我目前正在尝试让我的程序将数据从用户定义的 CSV 文件输入到 JTable 中。但是,由于某种原因,它不能正常工作,每当我尝试加载或保存文件时,Netbeans 都会向调试器抛出一些异常。
private void openActionPerformed(java.awt.event.ActionEvent evt)
{
int returnVal = fileChooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
try {
// What to do with the file, e.g. display it in a TextArea
CSVReader reader = new CSVReader(new FileReader( file.getAbsolutePath()));
List myEntries = reader.readAll();
table (myEntries.toArray());
} catch (IOException ex) {
System.out.println("problem accessing file"+file.getAbsolutePath());
}
} else {
System.out.println("File access cancelled by user.");
}
}
这是我针对特定问题的代码。
我怎样才能使它正常工作?