I have two classes topicPublishGUI and PulishToTopic
topicPublishGUI This is a GUI that performs tasks when buttons are pressed, one of the buttons is to read a file and store results in a string[] called dArray , I then use the array values in the publish2 method in PulishToTopic
topicPublishGUI
private void msgTextActionPerformed2(java.awt.event.ActionEvent evt) {
PulishToTopic p = new PulishToTopic();
p.readFile();}
p.publish2();
}
The above code is where the IOException error is happening
PulishToTopic below is what im trying to run
public int readFile() throws IOException
{
String part;
Scanner fileScan, partScan;
int i = 0;
int x = 0;
fileScan = new Scanner (new File("C:\\stuff.txt"));
// Read and process each line of the file
while (fileScan.hasNext())
{
part = fileScan.nextLine();
partScan = new Scanner (part);
partScan.useDelimiter(":");
while ( partScan.hasNext()){
dArray[i] = partScan.next();
i++;
}
}
for (x = 0;x<i;x++)
{
System.out.println("reading from readfile:"+dArray[x]);
}
return i;
}
IOExceptionand print the stack trace just as you are for the other two exception types. This will tell you the cause. Perhaps it's aFileNotFoundExceptionwhich extendsIOException. – David Harkness Mar 23 '11 at 0:30