使用套接字和线程等待来自服务器的消息
请原谅我的拼写,我是法国人,我会尽力而为。
我正在创建一个使用套接字与服务器通信的应用程序。这是一个采用我学校聊天协议的聊天应用程序。服务器可以随时向我发送消息。我坚持“随时”。我想在线程中创建一个 while(true) 循环,但它似乎不起作用。
总结一下:我想等待来自服务器的消息。
任何帮助表示赞赏。
please excuse my spelling, im french, i'll try to do my best.
Im creating an app that comunicate with a server using socket. It's a chat app with my school chatting protocol. The server can send me message anytime. I insist on the "anytime". I though about making a while(true) loop in a thread but it seems not to work.
To sum up : i want to wait for messages from the server.
Any help apreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你在谈论java。
如果只需要从服务器读取数据,则需要一一线程。 InputStreamReader 将等待直到收到消息。但是,如果您使用一些 gui 来显示结果并且只有一个线程,则程序看起来就像死了一样,因为在等待期间不会执行任何操作。
因此你需要将阅读部分放在单独的线程中。
例如:
i guess ur talking abt java.
If you just need to read from server , one one thread is needed. The InputStreamReader will wait till it gets some message. But if you are using some gui for showing the result and have only one thread, the program will looks like dead, As no execution will happen during the waiting time.
hence u need to put the reading part in seperate thread.
for example: