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

Ok, so I can't seem to get this to work, though many people have told me the syntax and logic is correct. Can anyone reveal for me what I could possibly be doing wrong?

public Scanner in = new Scanner(System.in);

public void movePlayer() {
    System.out.print("move: ");
    String str = in.nextLine();

    in.nextLine();

    char c = str.charAt(0);

    if (c == 'l' || c == 'L') {
        player.moveLeft();
    }
 }

The program gets caught at char c = str.charAt(0);

And I am being returned this error:

java.lang.StringIndexOutOfBoundsException: String index out of range: 0 (in java.lang.String)

share|improve this question
1  
Aaaaaand... did you try checking if str is not null ? – Raveline Apr 30 '12 at 11:24
1  
It means that str is empty (str == "") so there is no char at 0. – assylias Apr 30 '12 at 11:25
2  
Not "not null", empty, sorry. Why do you have a second in.nextLine() with no affectation ? Is this intentional ? – Raveline Apr 30 '12 at 11:26
1  
I made a small java file from your code and it compiles correctly. Perphaps there is some thing else wrong . Paste your full code ( btw , i made Scanner static and code is executed in static void main) – CyprUS Apr 30 '12 at 11:27

6 Answers

you did not input anything though the console, so str is empty. this is the reason why chatAt(0) throw an exception

share|improve this answer
@GregKopff The error message is pretty clear on that: you can only get that message if you do charAt on an empty string. – Mark Rotteveel Apr 30 '12 at 11:37

You don't want to use nextLine(). You want to use next().

String str = in.next();

This is the Javadoc for nextLine()

Advances this scanner past the current line and returns the input that was skipped. This method returns the rest of the current line, excluding any line separator at the end. The position is set to the beginning of the next line.

You want next() instead:

Finds and returns the next complete token from this scanner. A complete token is preceded and followed by input that matches the delimiter pattern. This method may block while waiting for input to scan, even if a previous invocation of hasNext() returned true.

This will stop you from consuming the empty line and raising an exception.

share|improve this answer

This means that str is empty. You should check if it is not null and not empty.

if (str != null && !str.isEmpty()) {
...
}
share|improve this answer
Thanks for the help everyone :) got it sorted! – UMG90 May 1 '12 at 13:12

thats ryt.. because when u try to get char at 0th position then it'll throw an exception coz the size f array is 0.

may be u read this for get I/O from the Command Line

share|improve this answer

Add a check for Empty String and Null as well . You will avoid a lot of headaches.

share|improve this answer

If you press Enter key in console, Scanner will be considered a complete line, regardless of whether or not there is text entered.

Press Enter at the beginning of a line, returns a String "" to the method Scanner.nextLine().

Add a check with str.lenght () > 0 before str.charAt(0).

share|improve this answer

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.