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.

I'm not new to java, but I cannot figure out why I get this Scanner error. The code compiles fine, but I get the following runtime error

Enter item number: Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor(Scanner.java:840) at java.util.Scanner.next(Scanner.java:1461) at java.util.Scanner.nextInt(Scanner.java:2091) at java.util.Scanner.nextInt(Scanner.java:2050) at TestInvoice.getValues(TestInvoice.java:3

share|improve this question
Remove the quotes around System.in. – Tyler Treat Oct 10 '10 at 21:20

1 Answer

up vote 11 down vote accepted

Perhaps change

Scanner scanner = new Scanner("System.in");

to

Scanner scanner = new Scanner(System.in);
share|improve this answer
I like this one! – willcodejavaforfood Oct 10 '10 at 21:20
oh such a simple error. you're right – user69514 Oct 10 '10 at 21:20

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.