我想从数据库中检索数据并显示到 JLabels 中。我在 Netbeans 工作,我已经这样做了。
private void showActionPerformed(java.awt.event.ActionEvent evt) {
int row=jTable1.getSelectedRow();
int column=jTable1.getSelectedColumn();
String str=(String)jTable1.getValueAt(row,column);
try{
rs=stat.executeQuery("select * from table3 where e_id='"+str+"'");
jLabel1.setText(rs.getString("name"));
jLabel12.setText(rs.getString("e_id"));
}
catch(Exception e)
{System.out.print(e);}
}
它无法显示任何内容。我在记事本中试过这个,它工作正常,但在 netbeans 中没有。
任何帮助表示赞赏。