ソケットをリッスンするために、この InputStream リーダーを作成しました。このコードは、スレッドwhile(!stop)
のメソッド内でループしています。run
このリーダーはスレッドをブロックし、メッセージを出力しません。
int read = 0;
byte[] buf = new byte[512];
int index = 0;
try {
while (!stop && (read = in.read()) != -1) {
System.out.println("read loop");
buf[index++] = (byte) read;
}
} catch (IOException e) {
e.printStackTrace();
}