Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What I'm trying to do is if the user clicks on the enter key the program should throw a BadUserInputException. My problem is whenever I press the enter key it just puts me in another line in the console essentially doing nothing.

Scanner input = new Scanner(System.in);
    System.out.println("Enter Student ID:");

    String sID = null;
    if (input.hasNextInt()==false){
        System.out.println("Please re-check the student number inputted. Student number can only be digits.");
        throw new BadUserInputException("Student number can not contain non-digits.");
    }else if (input.next()==""){
        throw new BadUserInputException("Student number can not be empty");
    }
share|improve this question
the Scanner's next() is a block wait method, which blocks until you get some input, so you will never get into second if statement, in this case, you probably need to use some stream input classes, which is much more robust than Scanner. – baboonWorksFine Apr 16 '11 at 20:48

2 Answers

The scanner looks for tokens between whitespaces and newlines - but there aren't any. I don't tend to use Scanner for reading from standard input - I use the old-fashioned BufferedReader method like this:

BufferedReader buf = new BufferedReader (new InputStreamReader (System.in));

and then I can say

String line = buf.readLine ();
if (line.equals ("")) blah();

There may be an easier solution however.

share|improve this answer

You need to compare strings with the .equals method, not ==.

share|improve this answer
2  
I still get the same thing. When I press enter it just takes me down one line so I can enter something. – Joel Sanchez Apr 16 '11 at 20:42

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.