,可以通过以下步骤实现:
下面是一个示例代码:
import javax.swing.JTable;
import javax.swing.table.AbstractTableModel;
public class DisableCellExample {
public static void main(String[] args) {
JTable table = new JTable();
table.setModel(new CustomTableModel());
}
}
class CustomTableModel extends AbstractTableModel {
private Object[][] data = {
{"Cell 1", "Cell 2", "Cell 3"},
{"Cell 4", "Cell 5", "Cell 6"},
{"Cell 7", "Cell 8", "Cell 9"}
};
private boolean[][] editable = {
{true, true, true},
{true, false, true},
{true, true, true}
};
@Override
public int getRowCount() {
return data.length;
}
@Override
public int getColumnCount() {
return data[0].length;
}
@Override
public Object getValueAt(int row, int col) {
return data[row][col];
}
@Override
public boolean isCellEditable(int row, int col) {
return editable[row][col];
}
}
在上述示例中,我们创建了一个自定义的TableModel,并重写了isCellEditable方法,将第二行第二列的单元格设置为不可编辑。然后将该TableModel应用到JTable上。
这样,当在Java Netbeans中运行该代码时,就会显示一个JTable,其中第二行第二列的单元格将无法编辑。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云