gpt4 book ai didi

java - 在 JTable 顶部添加按钮

转载 作者:行者123 更新时间:2023-11-30 02:56:23 24 4
gpt4 key购买 nike

如何在 JTable 顶部添加返回按钮?我尝试过,但没有成功。

public class viewMovie extends JPanel{

static JFrame frame = new JFrame("View Movie");
JTable table;

public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
try {
createAndShowGui();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
});
}

static void createAndShowGui() throws Exception {
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new viewMovie());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}

public viewMovie() throws Exception
{
String sql="Select * from movie";
DatabaseConnection db = new DatabaseConnection();
Connection conn =db.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
ResultSet rs = ps.executeQuery();
ResultSetMetaData rsmt= rs.getMetaData();
int c= rsmt.getColumnCount();
Vector column= new Vector(c);
for(int i=1;i<=c;i++)
{
column.add(rsmt.getColumnName(i));
}
Vector data = new Vector();
Vector row=new Vector();
while(rs.next())
{
row=new Vector(c);
for(int i=1;i<=c;i++)
{
row.add(rs.getString(i));
}
data.add(row);
}

JButton back= new JButton("Back");
JPanel topPanel = new JPanel(new GridLayout(1, 0, 3, 3));
topPanel.add(back);

JPanel panel= new JPanel();
table=new JTable(data,column);
JScrollPane jsp = new JScrollPane(table);
panel.setLayout(new BorderLayout());
panel.add(jsp,BorderLayout.CENTER);
frame.setContentPane(panel);
frame.setVisible(true);

}

}

这是我得到的输出。

enter image description here

最佳答案

您忘记了一行代码,即将 topPanel 添加到面板 JPanel 的行:

panel.add(topPanel, BorderLayout.PAGE_START);
<小时/>

旁注:对于将来的问题,您将希望使您的代码可由我们编译和运行,这意味着摆脱不必要的依赖项,例如数据库。对于上面的代码,数据库内容可以替换为:

JPanel panel = new JPanel();
Integer[][] data = { { 1, 2, 3 }, { 4, 5, 6 } };
String[] column = { "A", "B", "C" };

table = new JTable(data, column);

但实际上,由于这只是一个简单的布局问题,甚至不需要 JTable。

关于java - 在 JTable 顶部添加按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37139593/

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