1

嗨,我有一个JButton定义:

private JButton btnExp;

private JPanel jpShow = new JPanel();
jpShow.setLayout(null);

btnExp = new JButton("Export");
btnExp.setBounds(100, 250, 120, 25);

jpShow.add(jspTable);
jpShow.add(btnExp);
//Adding Panel to Window.
getContentPane().add(jpShow);

public void actionPerformed(ActionEvent ae) {
    try{
        Object obj = ae.getSource();
        if (obj == btnExp) {
            FileWriter excel = new FileWriter("File.TSV");

            for(int i = 0; i < dtmCustomer.getColumnCount(); i++){
                excel.write(dtmCustomer.getColumnName(i) + "\t");
            }
            excel.write("\n");

            for(int i=0; i< dtmCustomer.getRowCount(); i++) {
                for(int j=0; j < dtmCustomer.getColumnCount(); j++) {
                    excel.write(dtmCustomer.getValueAt(i,j).toString()+"\t");
                }
                excel.write("\n");
            }
            excel.close();
            JOptionPane.showMessageDialog(this, "File Written","Success", JOptionPane.PLAIN_MESSAGE);
        }
    }catch(Exception e){
        System.out.println(e);
    }
}

我试图JTable在用户单击按钮后将其导出,但没有任何反应,也没有引发异常。我做错了吗?

4

2 回答 2

3

您没有正确地将 ActionListener 添加到您的按钮。正确的方法是:

btnExp.addActionListener(new ActionListener() {
  public void actionPerformed(ActionEvent e) {
    // add here the contents in your actionPerformed method
  }
})
于 2012-08-23T15:32:03.130 回答
2
  1. 您发布的代码甚至不会编译
  2. 您应该将@Dan添加ActionListener到您的答案中JButton
  3. 您应该确保FileWriter在一个finally块中关闭。现在,当发生异常时,它不会被关闭
  4. 如果您在Event Dispatch Thread上导出表,您最终会得到一个无响应的 UI 。考虑使用SwingWorker. 有关更多信息,请参阅Swing 中的并发教程
  5. Avoid the use of setLayout( null ) and setBounds. Use a decent LayoutManager instead
于 2012-08-23T15:44:01.760 回答