Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Got an InputStreamReader (which is combined with a BufferedReader).

I want to read the content of the Stream in a loop

while((line = MyStream.readLine()) != null) {
 s.o.p(line);
String lastline; 
    }

but this creates a loop without an end. so my whole programm waits for the loop to end .. and waits ... and waits.

at the moment, i've got a method where you can say how many lines should be read. this works fine, but is very unflexible.

my method at the moment

public void getStatus(int times) throws IOException {

    for (int i = 0; i < times; i++) {
            System.out.println(fromServer.readLine());


            }

i want that this method reads all lines and saves the last one in a string without the "times" parameter.

share|improve this question

1 Answer

up vote 6 down vote accepted

The code you've got will work if it reaches the end of a stream.

My guess is that this is a network stream, and the other end isn't closing the connection. That won't end up with you going into the loop ad infinitum though - it'll end up with you just hanging on the readLine call, waiting for either the other end to close the stream, or for more data to arrive.

You need to either have some way of detecting you're finished (e.g. a terminating line / the connection closing) or know how many lines to read ahead of time.

share|improve this answer
+1. Jon's right - the situation you find yourself in isn't that the reader has reached the end of the stream, but that it's blocking for more input because it doesn't know if it's at the end of the stream yet. There is no way around this from the Java side - if the end of the stream hasn't been reached, your reader cannot know if there are more lines to come. – Andrzej Doyle Jul 14 '11 at 16:53
yeah, its a network stream. didn't get that this will change the situation – ABLX Jul 14 '11 at 16:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.