i'm working on a client/server application, and the client must keep listening from data received by the server, even if the client hasn't send any requests. I would like to have some information on how to persist the client socket to keep listening to the server incoming information. Usually on the server side there is a infinite while loop. Do i have to do the same thing on the client side ? Thanks for help, or if there is any good tutorial that i can follow on client/server.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Well, that's simple -- instantiate a java.net.Socket, and use it. http://download.oracle.com/javase/6/docs/api/java/net/Socket.html For example get the associated stream via getInputStream(), and then read() bytes from the InputStream.
|
||||
|
|