I have the following statement:
DataInputStream is = new DataInputStream(process.getInputStream());
I would like to print the contents of this input stream but I dont know the size of this stream. How should I read this stream and print it?
|
I have the following statement:
I would like to print the contents of this input stream but I dont know the size of this stream. How should I read this stream and print it? |
||||
|
|
It is common to all Streams, that the length is not known in advance. Using a standard But I assume, that you have wrapped a standard The JavaDoc for
If you use Tip: Be very careful in the beginning and lookup each method you use from |
||||
|
Call
|
|||
|
|
Keep reading a set buffer size in a loop. If the return value is ever less than the size of the buffer you know you have reached the end of the stream. If the return value is -1, there is no data in the buffer. |
|||
|
|
|
|
|||
|
|