我如何获得jbutton的变量名称" s101"?

时间:2018-01-21 07:50:38

标签: java mysql jbutton

我想获取jbutton的值并将其与我的数据库列进行比较并设置标签文本

private void s101ActionPerformed(java.awt.event.ActionEvent evt) {                                    

         try
        {
            Class.forName("com.mysql.jdbc.Driver");
            Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/abc","root","");
            PreparedStatement stm = con.prepareStatement("select * from seats where Seat_id="+s101.getName());
            ResultSet rs = stm.executeQuery(); 
            while(rs.next())
               // if(s101.getAccessibleContext().equals(rs.getString("Seat_id")))
                    {
                        lbl_id.setText(rs.getString("Seat_id"));
                        lbl_name.setText(rs.getString("Seat_name"));
                        lbl_price.setText(rs.getString("Price"));
                        lbl_type.setText(rs.getString("Type"));
                    }    
        }
        catch(Exception e)
        {
            e.printStackTrace();
        }
    }         

1 个答案:

答案 0 :(得分:0)

我认为您希望在按钮上显示文本并将其与数据库值进行比较。要实现这一目标,您应该从行动事件中获取资源。

JButton button = (JButton) evt.getSource();
String name = button.getText();

然后使用name与数据库进行比较。

name.equals(rs.getString("Seat_id")