csv ファイルを読み取り、内容を JList に表示する小さなアプリを作成しています。
私の現在の問題は、new FileReader(file)
コードがjava.io.FileNotFoundException
エラーを出し続けていることであり、その理由はよくわかりません。
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());
}
}
});