I have a program that allows a user to write information to a file. It doesn't write over everything in the original file, but adds to it. The thing is if the user doesn't enter enough info the programs crashes.
Each line in the text file looks something like this:
info 1, Info 2, info 3, info 4, info 5, info 6, info 7
Every line has six commas and seven pieces of information. So, I need to know what kind of exception to use to prevent a crash if say the user only enters 4 pieces of information or only uses two commas, etc. Anybody know how to do that?
Here's my code:
private void addDVDButtonActionPerformed(java.awt.event.ActionEvent evt) {
FileWriter fWriter = null;
BufferedWriter writer = null;
try {
fWriter = new FileWriter("info.txt", true);
writer = new BufferedWriter(fWriter);
writer.write(JOptionPane.showInputDialog(this, "ADDING INFO"));
writer.newLine();
writer.close();
} catch (Exception e) {
JOptionPane.showMessageDialog(this,"More information required");
}
}
catch (Exception e) { JOptionPane.showMessageDialog(this,"More information required"); }will take care of all types of exception irrespective of the nature of exception that has occurred... – S.M.09 Apr 11 '11 at 12:19