0

私はJavaが初めてで、ボタンが押されたときにそれを作ろうとしています。テーブルに入れられた新しい情報が更新されます。このエラーが発生しています:

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();

 }});     
}

あなたが私に与えることができるどんな助けにも感謝します.

4

2 に答える 2