Skip to content
Advertisement

Tag: objectinputstream

ObjectInputStream readObject in while Loop

Is it possible to read from ObjectInputStream in while loop which will terminate by exception thrown by socket timeout socket.setSoTimeout(4000); Answer When you say ‘not working’, what you really mean is ‘not compiling’, for reasons that are stated in the compiler message: Object isn’t a boolean expression, and you can’t declare a variable in a while condition. However the code

Advertisement