I am writing a small app that reads a csv file and displays the contents into a JList.
My current problem is that the new FileReader(file) code keeps giving me a java.io.FileNotFoundException error and I am not too sure why.
loadFile.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent actionEvent)
{
JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File("~/"));
if (fileChooser.showOpenDialog(instance) == JFileChooser.APPROVE_OPTION)
{
File file = fileChooser.getSelectedFile();
CSVReader reader = new CSVReader(new FileReader(file.getAbsolutePath()));
fileLocation.setText(file.getAbsolutePath());
}
}
});

System.out.println(e.getMessage());This should give a pretty good hint on what the problem is. It may be a "Permission denied", or "The system cannot find the file specified", or something else. This is likely to provide interesting information, rather than people making wild guesses on what the problem might be. – Guillaume Polet Feb 1 at 9:34