gpt4 book ai didi

java - 使用 netbeans 时向 JTable 添加数据

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:42:12 27 4
gpt4 key购买 nike

如何在使用 netbeans 时将数据添加到 JTable。它的后台代码中的 Netbeans 是这样的:

jTable1 = new javax.swing.JTable();
jTable1.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
{null, null},
{null, null},
{null, null},
{null, null}
},
new String [] {
"Name", "Branch"
}
) {
boolean[] canEdit = new boolean [] {
false, false
};

public boolean isCellEditable(int rowIndex, int columnIndex) {
return canEdit [columnIndex];
}
}); // THIS IS THE SNIPPET GENERATED BY NETBEANS
//( I have already created a table using the drag and drop fetaure of netbeans and this is the back snippet generated)

二维对象数组和字符串数组具有本地访问权限,因此当我想在程序中间填充时,我不能使用它来填充它。 (在某些函数中)

enter image description here

如上表所示,我将在某些功能中添加名称和分支。但是我该怎么做呢?

谁能告诉我一种方法,以便我可以将数据添加到 JTable 中?

最佳答案

jTable1.getModel().setValueAt(value, row, column);

关于java - 使用 netbeans 时向 JTable 添加数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7028696/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com