我有如下代码:
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。
JTextField
列名称直到您添加table_1到a 后才会显示JScrollPane,就像在教程中显示的那样。
table_1
JScrollPane