can i create two input streams for a single socket ? and can it is possible to use those 2 streams simultaneously ?? can it be done using clone object ?
Creating input stream for a socket
Collapse
X
-
Not really because once a byte has been read from a socket (through itsOriginally posted by swatibkshcan i create two input streams for a single socket ? and can it is possible to use those 2 streams simultaneously ?? can it be done using clone object ?
created inputstream) it can't be read again. You have to write your own class
for that (which can be fun).
kind regards,
Jos -
Comment