Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 JTable,我想要两件事:
我想在我的 JTable 中添加另一个表头,这可能吗?两者都是水平的。
我希望它在其中一个属性更改其值时添加一个分隔符,这可能吗?
我该怎么做这些事情?在这里查看我想要的表格。
是的,您可以添加第二个标题。您还可以使用 setBorder() 方法添加分隔符。
table.add(new JScrollPane(table)); table.setBorder(BorderFactory.createLineBorder(Color.RED,1));