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

How can I open a txt file an read numbers separated by enters or spaces into an array list?

Thanks.

share|improve this question
Is this homework? – Dean J Sep 27 '10 at 17:57
Kind of. It is just part of it. I have tried several pieces of sample codes I got from Google, but none of them worked properly. – nunos Sep 27 '10 at 21:29

2 Answers

up vote 8 down vote accepted

Read file, parse each line into an integer and store into a list:

List<Integer> list = new ArrayList<Integer>();
File file = new File("file.txt");
BufferedReader reader = null;

try {
    reader = new BufferedReader(new FileReader(file));
    String text = null;

    while ((text = reader.readLine()) != null) {
        list.add(Integer.parseInt(text));
    }
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
} finally {
    try {
        if (reader != null) {
            reader.close();
        }
    } catch (IOException e) {
    }
}

//print out the list
System.out.println(list);
share|improve this answer
This is good, but I would use Integer.valueOf(String) instead since you want an object (Integer) anyway. – Mark Peters Sep 27 '10 at 17:38
   try{

    BufferedReader br = new BufferedReader(new FileReader("textfile.txt"));
    String strLine;
    //Read File Line By Line
    while ((strLine = br.readLine()) != null)   {
      // Print the content on the console
      System.out.println (strLine);
    }
    //Close the input stream
    in.close();
    }catch (Exception e){//Catch exception if any
      System.err.println("Error: " + e.getMessage());
    }finally{
     in.close();
    }

This will read line by line,

If your no. are saperated by newline char. then in place of

 System.out.println (strLine);

You can have

try{
int i = Integer.parseInt(strLine);
}catch(NumberFormatException npe){
//do something
}  

If it is separated by spaces then

try{
    String noInStringArr[] = strLine.split(" ");
//then you can parse it to Int as above
    }catch(NumberFormatException npe){
    //do something
    }  
share|improve this answer
you should close the inputstream in a finally block. – dogbane Sep 27 '10 at 17:18
Please don't use DataInputStream to read text. Unfortunately examples like this get copied again and again so can you can remove it from your example. vanillajava.blogspot.co.uk/2012/08/… – Peter Lawrey Jan 30 at 23:44
updated, nice article btw – Jigar Joshi Jan 30 at 23:50

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.