I have written the following line of code that reads the data in a text file and stores it in a array. Everything works fine except for when I try and convert the String into int.

Here I am trying to scan the text file line by line and store every word separated by comma in an array. I cant figure out why its throwing NumberFormatException when I convert String into int and assign it to int id.

The following is the code I have written:

public boolean loadPapers(){
    String fileName = "paper.txt"; // file to be opened
    boolean fileOpened = true;
    int id, rank;
    String topic, author, date;

    try {
        Scanner fileData = new Scanner(new File(fileName));

        while(fileData.hasNextLine()){
            String line = fileData.nextLine();

            String[] words = line.split(","); // Separate words from sentence


            // get required parameters for Paper object
            id = Integer.parseInt(words[0]);  // throws numberFormatException
            topic = words[1];
            author = words[2];
            date = words[3];
            rank = Integer.parseInt(words[4]);  // throws numberFormatException

            // create new paper
            Paper entry = new Paper(id, topic, author, date, rank);
            paperList.add(entry);

        } // end while

        fileData.close(); // close file
    }  // end try

    catch (FileNotFoundException e) {
        fileOpened = false;
        swingErrorMessage("ERROR: File couldn't be opened.\nNo papers were loaded.", "File Error");
    } // end catch

    return fileOpened;

} // end loadPapers

The following is the content of text file:

46,Evolutionary Comp,Michael Smith,12/01/10,4
61,Fuzzy Logic and App,John Peterson,13/01/10,3
118,Neural Networks,Arthur London,20/01/10,5 
200,Evolutionary Comp,Scott Jones,30/01/10,1 
210,Fuzzy Logic and App,Joe Wang,01/02/10,4 
12,Evolutionary Comp,Andy Roberts,12/12/12,3 
123,Computer Science,Zhou You,12/12/12,3

The line that program fails on is:

id = Integer.parseInt(words[0]);  // throws numberFormatException

The error message looks like:

Exception in thread "main" java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:470)
at java.lang.Integer.parseInt(Integer.java:499)
at PaperManagerApplication.Frame.loadPapers(Frame.java:409)
at PaperManagerApplication.PaperManager.main(PaperManager.java:16)
link|improve this question

1  
Can you please print out words[0] and words[4] so that we can see the String content that your program fails on? – Bringer128 Dec 15 '11 at 3:22
The program fails on while printing id and throws NumberFormatException. – Subash Dec 15 '11 at 3:24
1  
I would suggest for you to print the values of the array after it has split them and you will probably find the answer quick - LEAVE THE ID AS STRING AND PRINT.. AND YOU WILL SEE. – user710502 Dec 15 '11 at 3:26
It prints the value. Problem is only when I try to assign it as int. – Subash Dec 15 '11 at 3:29
What is the value? Are there any "funny chars" like spaces, tabs etc. – user949300 Dec 15 '11 at 3:30
show 4 more comments
feedback

4 Answers

up vote 1 down vote accepted

Your data is not clean, trim it first.

link|improve this answer
still doesn't work. – Subash Dec 15 '11 at 3:36
What about your input file? Are there any blank or empty lines, perhaps at the bottom or top of the file? – Girish Rao Dec 15 '11 at 3:39
so could you please explain what that statement does. – Subash Dec 15 '11 at 4:02
feedback

The key is here: NumberFormatException: For input string: ""

The problem you have is that you either have an empty line in your input e.g.

123,Computer Science,Zhou You,12/12/12,3
<empty line here just before end of file>

Or you have an empty parameter e.g.

,Computer Science,Zhou You,12/12/12,3

Effectively, your code is fine except that it doesn't handle the above two cases.

link|improve this answer
Its doesn't have any empty line nor any empty spaces. – Subash Dec 15 '11 at 3:36
Put in a debug statement to print the value of line, then let us know what that value is for the line that fails. – Bringer128 Dec 15 '11 at 3:46
feedback

you can just execute a statement which will remove all the char other than digits:

word[4]= word[4].replaceAll( "[^\\d]", "" ); avoid all the non-digits chars.
Integer.parseInt(word[4]);
link|improve this answer
feedback

Why dont you print the array words to see what split did? Also, beware of spaces in the Strings - you should usually call trim() before parseInt().

Looking at your just added stack trace, it's barfing on an empty String. Add a System.out.println(line) to see which line is causing the problem.

link|improve this answer
so how do you write it. I have already tried writing id = Integer.parseInt(words[0].trim()); still doesn't work. – Subash Dec 15 '11 at 3:30
Trim it first, then try parsing it.. string temp = word[0].Trim();, int id = Integer.parseInt(temp); – user710502 Dec 15 '11 at 3:32
no I tried than as well. still doesn't work. – Subash Dec 15 '11 at 3:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.