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

Suppose my input file contains:

3 4 5 6    7    	8
9


10

I want to run a while loop and read integers, so that I will get 3,4,5,6,7,8 and 10 respectively after each iteration of the loop.

This is really simple to do in C/C++ but not in Java...

I tried this code:

try {
            DataInputStream out2 = new DataInputStream(new BufferedInputStream(new FileInputStream(file)));

            int i=out2.read();
            while(i!=-1){
                System.out.println(i);
                i=out2.readInt();
            }

    } catch (IOException ex) {

    }

and what I get is:

51
540287029
540418080
538982176
151599117
171511050
218762506
825232650

How do I read the integers from this file in Java?

share|improve this question
1  
FYI: DataInputStream is for reading binary, not text. – Laurence Gonsalves Sep 12 '09 at 6:35
So, did the java solution turn out to be easier than the C++ or harder? – Bill K Sep 12 '09 at 9:18
for me, reading inputs in C is still easier, specially where the file contains all sorts of data - numbers, strings, floats etc. – Lazer Sep 13 '09 at 12:30

1 Answer

up vote 13 down vote accepted

One can use the Scanner class and its nextInt method:

Scanner s = new Scanner("3  4        5   6");

while (s.hasNext()) {
  System.out.println(s.nextInt());
}

Output:

3
4
5
6

Basically by default, the Scanner object will ignore any whitespace, and will get the next token.

The Scanner class as a constructor which takes an InputStream as the source for the character stream, so one could use a FileInputStream that opens the source of the text.

Replace the Scanner instantiation in the above example with the following:

Scanner s = new Scanner(new FileInputStream(new File(filePath)));
share|improve this answer
thanks a lot! it works! – Lazer Sep 12 '09 at 7:24

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.