我第一次尝试为 php 套接字服务器编写客户端,但遇到了一些麻烦,我有点被信息淹没了!
对于服务器,我们需要一个打开的连接,我希望我的客户端等到它接收到数据后再通知线程开始解析输入流。这是否可以在不使用循环的情况下实现?我宁愿能够调用 lock.notify()。
我也在看 NIO,这是我想要的可行选择吗?这是我到目前为止的代码,但同样,我只是想避免 for(;;) 甚至可能将接收到的消息排队,因为它们很可能只是 JSON
Thread serverRecieve = new Thread(new Runnable() {
@Override
public void run() {
try {
for (;;) {
if (in != null) {
String line;
while ((line = in.readLine()) != null) {
sout(line);
}
} else {
sout("inputstream is null! Waiting for a second to test again");
}
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
Logger.getLogger(WebManager.class.getName()).log(Level.SEVERE, null, ex);
}
}
} catch (IOException ex) {
Logger.getLogger(WebManager.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
多谢你们!PS:我确实在这里查看了很多套接字线程,但决定问我需要什么会更容易。