I am getting some data from network using an Inputstream. I want to make a log to check if the InputStream has something on it. Log("InputStream = "+ is.read()) and I get InputStream = 123
But later when I use it I get InputStream = -1. I guess is something related with the position of the iterator, but I haven't seen in the API of Java that you have to use a reset() (as when you use mark()) to read again the inputStream.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Correct - one read to a customer. Once you use a stream or an iterator you can't use it again without resetting it. |
|||
|
|
|
If you need peeking, use Java NIO. A |
|||
|
|
|
You could wrap you stream in a
and a following read will re-read that character |
|||
|
|
|
This example uses |
|||
|
|