如何在JTable中更改和恢复单元格背景几秒钟?

时间:2016-08-17 12:43:59

标签: java swing jtable tablecellrenderer tablemodel

如何在文本更改时使JTable中的单元格更改其背景颜色?我希望颜色改变几秒钟,然后将其恢复到初始背景颜色。这是我的代码:

package GUI;

import java.util.ArrayList;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableModel;


public class NewJFrame extends javax.swing.JFrame {

    private TableModel myTableModel;

    /**
     * Creates new form NewJFrame
     */
    public NewJFrame() {
        myTableModel = new MyTableModel();
        initComponents();
    }

    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        button = new javax.swing.JButton();
        jScrollPane1 = new javax.swing.JScrollPane();
        table = new javax.swing.JTable();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        button.setText("jButton1");
        button.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                buttonActionPerformed(evt);
            }
        });

        table.setModel(myTableModel);
        jScrollPane1.setViewportView(table);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(button)
                .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                .addContainerGap(15, Short.MAX_VALUE)
                .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 375, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addContainerGap())
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGap(26, 26, 26)
                .addComponent(button)
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 275, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        );

        pack();
    }// </editor-fold>                        

    private void buttonActionPerformed(java.awt.event.ActionEvent evt) {                                       
        myTableModel.setValueAt(1.40, 0, 2);myTableModel.setValueAt(1.00, 1, 2);
    }                                      

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new NewJFrame().setVisible(true);
            }
        });
    }

    // Variables declaration - do not modify                     
    private javax.swing.JButton button;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTable table;
    // End of variables declaration                   

    private static class Rate {

        private String Currency1;

        public void setCurrency1(String Currency1) {
            this.Currency1 = Currency1;
        }

        public void setCurrency2(String Currency2) {
            this.Currency2 = Currency2;
        }

        public void setExchangeRate(Double ExchangeRate) {
            this.ExchangeRate = ExchangeRate;
        }

        public String getCurrency1() {
            return Currency1;
        }

        public String getCurrency2() {
            return Currency2;
        }

        public Double getExchangeRate() {
            return ExchangeRate;
        }
        private String Currency2;
        private Double ExchangeRate;

        public Rate() {

        }

        public Rate(String Currency1, String Currency2, Double ExchangeRate) {
            this.Currency1 = Currency1;
            this.Currency2 = Currency2;
            this.ExchangeRate = ExchangeRate;
        }

    }

    private static class MyTableModel extends AbstractTableModel {

        private final String[] columnNames = {"Currency1", "Currency2", "Exchange Rate"};
        private ArrayList<Rate> ratesList = new ArrayList<Rate>() {
            {
                add(new Rate("EUR", "USD", 1.13));
                add(new Rate("EUR", "GBP", 0.87));
                add(new Rate("EUR", "CHF", 1.09));
                add(new Rate("EUR", "JPY", 113.49));
                add(new Rate("EUR", "MAD", 10.86));
            }
        };

        @Override
        public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
            // TODO Auto-generated method stub
            Rate rate = ratesList.get(rowIndex);
            switch (columnIndex) {
                case 0:
                    rate.setCurrency1((String) aValue);
                    fireTableCellUpdated(rowIndex, columnIndex);
                    break;
                case 1:
                    rate.setCurrency2((String) aValue);
                    fireTableCellUpdated(rowIndex, columnIndex);
                    break;
                case 2:
                    rate.setExchangeRate((Double) aValue);
                    fireTableCellUpdated(rowIndex, columnIndex);
                    break;
                default:
                    break;
            }
        }

        @Override
        public Object getValueAt(int rowIndex, int columnIndex) {
            Rate rate = ratesList.get(rowIndex);
            switch (columnIndex) {
                case 0:
                    return rate.getCurrency1();
                case 1:
                    return rate.getCurrency2();
                case 2:
                    return rate.getExchangeRate();

                default:
                    return null;
            }
        }

        @Override
        public int getRowCount() {
            return ratesList.size();
        }

        @Override
        public int getColumnCount() {
            return columnNames.length;
        }

        @Override
        public String getColumnName(int column) {
            return columnNames[column];
        }
    }
}

1 个答案:

答案 0 :(得分:1)

你的例子缺少几个基本要素:概括地说,

  • 在自定义TableCellEditor中,让您stopCellEditing()的{​​{1}}的实施开始6 year old question,具有所需的延迟。

  • stopCellEditing()的相同实现中,调整您的here以显示所选的突出显示颜色。随后调用setValueAt()应自动触发合适的更新事件。

  • 在计时器的ActionListenerstop()计时器中,通过咨询TableCellRenderer"Table.background"显示获得的默认UIManager。您可能需要更新视图,最好是通过从TableModel触发相应的事件来更新。