使JTable单元不可编辑

时间:2011-12-04 02:30:03

标签: java swing jtable tablemodel

我试图在用户双击时使JTable的所有单元格都不可编辑。我已经阅读了很多论坛帖子,一般的共识是创建一个新的表模型类,扩展DefaultTableModel然后重写方法isCellEditable(int row,int column)。我做了所有这些,现在当我运行我的程序(小程序)时,没有任何东西出现在单元格中。 注意我这个学期的教授不认为applet已经过时了......

表格模型的代码:

public class MyTableModel extends DefaultTableModel
{
    public boolean isCellEditable(int row, int column)      //override isCellEditable
    //PRE:  row > 0, column > 0
    //POST: FCTVAL == false always
    {
        return false;
    }
}

    Code in my class:  **NOTE** this class extends JPanel 

    private JScrollPane storesPane;                
    private JTable storesTable; 

    Code in the Constructor:             

    storesTable = new JTable(tableData, COL_NAMES);    //tableData and COL_NAMES are passed in
    storesTable.setModel(new MyTableModel());

    storesPane = new JScrollPane(storesTable);
    storesTable.setFillsViewportHeight(true);
    add(storesPane, BorderLayout.CENTER);     

希望你们中的一些Java专家可以找到我的错误:)

4 个答案:

答案 0 :(得分:6)

这一行创建了一个新的JTable并在幕后隐式创建了一个DefaultTableModel,它保存了JTable所需的所有正确数据:

storesTable = new JTable(tableData, COL_NAMES);

这一行有效地删除了上面隐式创建的表模型,该表模型保存了所有表的数据,并将其替换为不包含任何数据的表模型:

storesTable.setModel(new MyTableModel());

您需要为MyTableModel类提供构造函数,并在该构造函数中调用超级构造函数并传入您当前在其构造函数中传递给表的数据。

例如,

public class MyTableModel extends DefaultTableModel {

   public MyTableModel(Object[][] tableData, Object[] colNames) {
      super(tableData, colNames);
   }

   public boolean isCellEditable(int row, int column) {
      return false;
   }
}

然后你可以像这样使用它:

MyTableModel model = new MyTableModel(tableData, COL_NAMES);
storesTable = new JTable(model);

答案 1 :(得分:3)

今天早些时候我遇到了同样的问题。这解决了我。

    JTable table = new JTable( data, headers ){  
      public boolean isCellEditable(int row, int column){  
        return false;  
      }  
    };  

效果很好!

答案 2 :(得分:3)

只需覆盖isCellEditable类的DefaultTableModel方法即可。快速的方法:

JTable table = new JTable();
DefaultTableModel dtm = new DefaultTableModel(0, 0) {
    public boolean isCellEditable(int row, int column) {
        return false;
    }
};
table.setModel(dtm);

答案 3 :(得分:1)

Hello Friend我也在办公桌上,请尝试我的代码

    import javax.swing.table.AbstractTableModel;

    public class Table extends AbstractTableModel {

    private boolean DEBUG = false;
    private String[] columnNames = {"                Date Time", "                Parameter",
    "   Barometric Pressure (hPa)", "           Temperature (°C)", "             Battery             Voltage    (V)"};

public static Object[][] data = {};


public TableControllerViewdataTabTableModel() {
}

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

@Override
public int getRowCount() {
    return data.length;
}

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

@Override
public Object getValueAt(int row, int col) {
    return data[row][col];
}

@Override
public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
}

@Override
public boolean isCellEditable(int row, int col) {
    return false;

}

@Override
/**
 * The setValueAt.
 */
public void setValueAt(Object value, int row, int col) {
    data[row][col] = value;
    fireTableCellUpdated(row, col);

    if (DEBUG) {

        printDebugData();
    }
}

/**
 * The printDebugData.
 */
private void printDebugData() {
    int numRows = getRowCount();
    int numCols = getColumnCount();

    for (int i = 0; i < numRows; i++) {

        for (int j = 0; j < numCols; j++) {
        }

    }

}
}