ハッカー団結成
..
524: ◆Z4QrFDzwrY
06/03/12 15:51:28
public class ServerUnit extends ServerSocket {
private ServerSocket sSocket = null;
private Thread thread = null;
private Socket socket = null;
private DataInputStream inStream = null;
private DataOutputStream outStream = null;
private BufferedInputStream inBuffer = null;
private BufferedOutputStream outBuffer = null;
public ServerUnit() throws IOException {
//this(51000);
}
public ServerUnit(int port) throws IOException {
try {
sSocket = new ServerSocket(port);
while(true) {
socket = sSocket.accept();
Thread thread = new Thread();
thread.start();
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
4944日前に更新/211 KB
担当:undef