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.