如何从 JButton 中检索数据?

Posted

技术标签:

【中文标题】如何从 JButton 中检索数据?【英文标题】:How to retrieve data from JButton? 【发布时间】:2019-09-08 16:37:34 【问题描述】:

我希望从循环中创建 JButton 控件,然后使用事件处理程序来提取相关信息并使用 SQL 命令进一步操作。

但是我无法访问已创建按钮对象的组件名称或组件文本字段。

try 
    String SQL = "SELECT * FROM Products";
    ResultSet rs = GetDB.AccessDatabse(SQL);

    while(rs.next())
        JButton btn = new JButton();
        btn.setText(rs.getString("ProductName"));
        btn.setName(rs.getString("ProductName"));
        System.out.println(btn.getName()); 
        btn.addActionListener(this);
        add(btn);
                    
       
 catch (SQLException ex) System.out.println("GUI Creation Error");    


    @Override
    public void actionPerformed(ActionEvent ae)
        System.out.println(this.getName()); 
    

我希望将按钮名称设置为 SQL 查询结果,但在尝试打印结果时,它会为每个按钮显示 "frame0"

每个按钮的文本区域都在工作

【问题讨论】:

如需更好的帮助,请edit 添加minimal reproducible example 或Short, Self Contained, Correct Example。替换数据库的硬编码数据。 @Alan Robinson 只是一个小提示:在处理这个关键字时,请包含该类,以便我们可以立即看到这个上下文;) 【参考方案1】:

您在this 上调用getName(),这不是按钮,而是您的this-context,即您的JFrame

你需要解析ActionEvent的来源。

在这里我做了一些可以做你想做的快速代码:

actionPerformed(ActionEvent e)  
  if(e.getSource() instanceof JButton) 
    //Casting here is safe after the if condition
    JButton b = (JButton) e.getSource();
    System.out.println(b.getText());
   else 
    System.out.println("Something other than a JButton was clicked");
  
  

我做什么:我检查动作源是否为JButton,然后将其转换为一个新的局部变量,然后获取它的文本。

【讨论】:

当我编辑问题时,我一度认为frame0 看起来很奇怪,但它让我忘记了!很好发现。 我还需要多看两眼:)

以上是关于如何从 JButton 中检索数据?的主要内容,如果未能解决你的问题,请参考以下文章

如何设置JButton ArrayList的属性?

从 JButton 中删除一个 ActionListener

如何将 JButton 放在 JComboBox 中

在 JPanel.getComponents() 中循环时如何获取 JButton 属性

单击 JButton 时不会填充 JTable

如何将图像添加到 JButton