我是java的新手,我試圖在按下按鈕時它會更新放入表中的新信息。我收到此錯誤:在actionlistener中未報告的異常java.io.IOException
unreported exception java.io.IOException; must be caught or declared to be thrown
在這裏,我有麻煩的代碼:
public static void updateAction(){
update.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
BufferedWriter bfw = new BufferedWriter(new FileWriter(tmp));
for(int i = 0 ; i < table.getColumnCount() ; i++)
{
bfw.write(table.getColumnName(i));
bfw.write("\t");
}
for (int i = 0 ; i < table.getRowCount(); i++)
{
bfw.newLine();
for(int j = 0 ; j < table.getColumnCount();j++)
{
bfw.write((String)(table.getValueAt(i,j)));
bfw.write("\t");;
}
}
bfw.close();
}});
}
感謝任何幫助,您可以給我。