Sorry if this sounds too simple. I'm very new to Java.

Here is some simple code I was using to examine hasNextLine(). When I run it, I can't make it stop. I thought if you didn't write any input and pressed Enter, you would escape the while loop.

Can someone explain to me how hasNextLine() works in this situation?

import java.util.*;

public class StringRaw {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextLine()) {
            String str = sc.nextLine();
        }
        System.out.print("YOU'VE GOT THROUGH");
    }
}
link|improve this question
1  
Press Ctrl-Z ( Windows ) or Ctrl-D ( Unix ) – Tempus Apr 13 '11 at 17:45
@Geo, its Ctrl+C in unix i believe (and i think its the same in windows as well) – Neal Apr 13 '11 at 17:47
That works too, but I think Ctrl-C ends the process directly. – Tempus Apr 13 '11 at 17:53
feedback

2 Answers

When reading from System.in, you are reading from the keyboard, by default, and that is an infinite input stream... it has as many lines as the user cares to type. I think sending the control sequence for EOF might work, such as CTL-Z (or is it CTL-D?).

Looking at my good-ol' ASCII chart... CTL-C is an ETX and CTL-D is an EOT; either of those should work to terminate a text stream. CTL-Z is a SUB which should not work (but it might, since controls are historically interpreted highly subjectively).

link|improve this answer
Yes -- the user just hasn't entered those lines yet. BTW guys, does the implementation block on .hasNextLine() or .nextLine()? – Dilum Ranatunga Apr 13 '11 at 17:47
Thanks alot guys. Only needed the CTRL-Z trick. I couldn't find any text about it. – Helgi Apr 13 '11 at 18:03
from java doc: hasNextLine public boolean hasNextLine() Returns true if there is another line in the input of this scanner. This method may block while waiting for input. The scanner does not advance past any input. – sweeney Aug 10 '11 at 18:43
feedback

Hit Ctrl + D to terminate input from stdin. (Windows: Ctrl + Z) or provide input from a command:

echo -e "abc\ndef" | java Program
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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