我的代码如下:
table_1 = new JTable();
table_1.setModel(new DefaultTableModel(
new Object[][] {
{null, null, null, null, null, null, null},
},
new String[] {
"Product Code", "Description", "Price", "Quantity", "Total ", "Discount", "Remarks"
}
));
我想查看列标题名称。我试过这个代码,但我看不到这些名字。我想知道怎么做?
另外,我还想设置来自JTextField
的单元格值。