不使用eclipse显示表头。如何解决这个问题。只有来自数据库的数据成功我尝试了,所以我附上下面。
这是我用来显示数据库数据的代码。
void table_load()
{
try {
pst = con.prepareStatement("select * from registation");
rs = pst.executeQuery();
table_1.setModel(DbUtils.resultSetToTableModel(rs));
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
table_1 = new JTable();
table_1.setBounds(448, 62, 383, 296);
frmStudentCrud.getContentPane().add(table_1);
1条答案
按热度按时间qni6mghb1#
不显示表格标题
只有将表添加到滚动窗格并将滚动窗格添加到框架时,才会显示标题。
您的代码应该是: