JTable 列标题不可见
列标题在我的 JTable 中不可见 我创建了一个 JPanel 并将 JTable 添加到 JPanel。
Object rowData[][] = { { "Row1-Column1", "Row1-Column2", "Row1-Column3"},
{ "Row2-Column1", "Row2-Column2", "Row2-Column3"} };
Object columnNames[] = { "Column One", "Column Two", "Column Three"};
JTable jTable = new JTable(rowData, columnNames);
column header not visible in my JTable i have created a JPanel and added the JTable to the JPanel.
Object rowData[][] = { { "Row1-Column1", "Row1-Column2", "Row1-Column3"},
{ "Row2-Column1", "Row2-Column2", "Row2-Column3"} };
Object columnNames[] = { "Column One", "Column Two", "Column Three"};
JTable jTable = new JTable(rowData, columnNames);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JTable 的 API 指出:
或者只是将表格添加到滚动窗格,然后将滚动窗格添加到面板...
The API for JTable states:
Or just add the table to a scrollpane, and add your scrollpane to the panel...
下面介绍了如何在不使用 JScrollPane 的情况下向 JTable 添加标头:
Here's how to add a header to a JTable without using a JScrollPane:
您可以将以下代码添加到您的代码中
You can add following code into your code
具有动态数据的最佳 JTable 示例(只需粘贴到编辑器中并作为 Java 应用程序执行即可顺利工作):
Best JTable Example (Working smoothly just paste in editor and execute as Java application) with dynamic data :