gpt4 book ai didi

java - 在 JTable 中查看标题?

转载 作者:行者123 更新时间:2023-12-02 00:52:34 24 4
gpt4 key购买 nike

将 JTable 添加到 JFrame 时无法查看 JTable 中的 header ..

     String[] col={"Name","ID","Marks"};
Object[][] data={{"venkat",201,450},{"Ramesh",102,450},{"Rahul",2,430}, {"Thiman",4,434}};
table=new JTable(data,col);

上面的代码没有在 JFrame 中设置 header 。如何在 JTable 中添加 View 标题,同时将其添加到 JFrame 中......?

最佳答案

您需要将表格添加到滚动 Pane ,或在需要的位置显式添加标题

JScrollPane scroller = new JScrollPane(table);

然后将滚动 Pane 添加到您的 gui

关于java - 在 JTable 中查看标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2407053/

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