如何记录何时编辑JTable单元格

时间:2019-07-28 12:59:34

标签: java

我试图基于JTable中的值更新JPanel,所以我想知道如何记录JTable的编辑时间,以便可以更新正在使用的JPanel。

我尝试过使用TableModelListener,但是侦听器中的代码仅在调整Frame的大小时才运行,因此卡住了。

这是我的TableModelListener代码:

tableauTroncon.addTableModelListener(new TableModelListener() {
    @Override
    public void tableChanged(TableModelEvent e) {
        System.out.println("A cell was edited");
        EtapeUpdater.majEtape(etape, tableauTroncon.getData()); // updates the data used by the JPanel
        affichageEtape = new EtapePanel(etape); //Updates the JPanel
        affichageEtape.repaint(); //Repaints the JPanel
    }
});`

编辑:我指的是用户手动更新单元格。 另外tableauTroncon是我的自定义TableModel的实例 我不知道这是否可以帮上忙,但是有我自定义TableModel的代码:

public class EtapeTableModel extends AbstractTableModel {
private List<Troncon> data;
private String[] titre; //Title of the columns

public EtapeTableModel(List<Troncon> data, String[] titre){
    this.data = data;
    this.titre = titre;
}

public String getColumnName(int col){
    return this.titre[col];
}

public int getColumnCount(){
    return this.titre.length;
}

public int getRowCount(){
    return this.data.size();
}

public Object getValueAt(int row, int col){
    Troncon troncon = data.get(row);
    switch(col)
    {
        case 0:
            return row;
        case 1:
            return troncon.getLongueur(); 
        case 2:
            return troncon.getDenivele();
        case 3:
            return troncon.isPave();
        case 4:
            return new JButton();
        default:
            throw new IllegalArgumentException();

    }
}

public void setValueAt(Object value, int row, int col){
    switch(col)
    {
        case 1:
            data.get(row).setLongueur( (double) value);
            break;
        case 2:
            data.get(row).setDenivele((double) value);
            break;
        case 3:
            data.get(row).setPave((boolean) value);
            break;
        case 4:
            break;

        default:
            throw new IllegalArgumentException();
    }

    //EtapeUpdater.majEtape(,data); 
}

public boolean isCellEditable(int row, int col)
{
    return true;
}

public Class getColumnClass(int col){
    switch(col)
    {
        case 0: return Integer.class;
        case 1:
        case 2:
            return Double.class;
        case 3: return Boolean.class;
        case 4: return JButton.class;
        default: throw new IllegalArgumentException();

    }

}

1 个答案:

答案 0 :(得分:-1)

这可能有帮助。

myTable.getModel().addTableModelListener(new TableModelListener()
{
 @Override
 public void tableChanged(TableModelEvent e) 
 {
 // access the values of the model and save them to the file here
}
});

查看此帖子

Stackoverflow post - JTable

Javacs- JTable