aspose file tools
The moose likes Beginning Java and the fly likes BufferedReader problem Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "BufferedReader problem" Watch "BufferedReader problem" New topic
Author

BufferedReader problem

Nathan Doe
Greenhorn

Joined: Oct 17, 2009
Posts: 24
I am trying to prompt the user to enter two numbers and then have those numbers set to the two variables cNum and sNum.



The problem is that when I run this when i enter a value the output is a number in the 50's.
Any help is appreciated.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32651
    
    4
You need to see what the read() method does, and work out why you get 51 when you expect 3. There are other methods in those classes, eg readLine() which are probably more suitable. There is no need to use two BufferedReaders in the same method to read from the same source. Make sure you use a finally block to close the Reader, otherwise you may end up with "resource leaks."

You may find it much easier if you use the Scanner class.
Nathan Doe
Greenhorn

Joined: Oct 17, 2009
Posts: 24
Thanks!
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32651
    
    4
I presume you have got it worked out then . . . well done
 
I agree. Here's the link: http://zeroturnaround.com/jrebel
 
subject: BufferedReader problem
 
Similar Threads
Digits in Array
Threads
how to add number of digit in array
how to add number of digit in array
trouble with operator