I'm trying to read doubles from a .txt file and put them all into a list.
Here's my code so far ->
(I have one method to ask for the file and get the data stream, and one to put the doubles into a list.)
public InputFile () throws MyException {
fileIn = null;
dataIn = null;
do {
filename = JOptionPane.showInputDialog("What is the file called? ");
try {
fileIn = new FileInputStream((filename + ".txt"));
dataIn = new DataInputStream(fileIn);
return;
}
catch (FileNotFoundException e) {
JOptionPane.showMessageDialog(null, "There is no "+filename + ".txt");
}
}
while ( Question.answerIsYesTo("Do you want to retype the file name") );
throw new MyException("No input file was chosen");
}
That part works fine.
public ProcessMain() {
boolean EOF = false;
List <Double> allNumbers = new ArrayList <Double> () ;
try {
InputFile inputFile = new InputFile();
while(EOF == false) {
try {
allNumbers.add(inputFile.dataIn.readDouble());
}
catch(EOFException e){ EOF = true; }
}
// List manipulation here. I have no problems with this part.
}
catch (Exception e) {
System.out.println(e);
}
System.out.println(allNumbers);
I get the following -
java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
Any ideas?
InputFile2? Did you meanInputFile inputFile2 = new InputFile()? What line of code throws the exception? – Matt Ball Mar 30 '11 at 14:24new Double()constructor. You can pass adoubledirectly toallNumbers.add()and it will be autoboxed to aDouble. If you want to box thedoubleexplicitly, useDouble#valueOf()instead ofnew Double()- in which case you don't need to parse the string yourself, becauseDouble#valueOf()can take a string. – Matt Ball Mar 30 '11 at 14:35