从 JRadioButton 获取不属于 ButtonGroup 的文本



我的程序是一个GUI。我有这样的方法,当一个按钮被点击时。它动态地用JRadioButtons填充下一个屏幕。

private void setExamButtonActionPerformed(java.awt.event.ActionEvent evt)
 {                 
        if(evt.getActionCommand().equals("Set Exam"))
        {
            CardLayout cL = (CardLayout)cardPanels.getLayout();
            cL.show(cardPanels, "setExamPanel");
        }
        try
        {
            //InputStream code
            String theMessage = myObject.getMessage();          
            String delims = "(?=(0*([0-9]{1,2}|100)))"; 
            String[] questions = theMessage.split(delims);
            System.out.println(Arrays.toString(questions));         
            for (int j = 1; j < questions.length; j++)
            {
                settingQuestionBoxes = new JCheckBox(questions[j]);             
                settingQuestionTextField = new JTextField("");
                jPanel1.add(settingQuestionBoxes);              
                jPanel1.add(settingQuestionTextField);
                jPanel1.revalidate();
                jPanel1.repaint();                  
            }
            //close streams and socket code
        }
        catch(Exception e)
        {
            System.out.println(e);
        }
 }

然后我有另一个屏幕上的另一个方法,从上一个方法填充的数据将转到

private void setExamQuestionButtonActionPerformed(java.awt.event.ActionEvent evt)
    {
            if(evt.getActionCommand().equals("Set Exam Question"))
            {           
                        ArrayList<JToggleButton> settingQuestionBoxes = new ArrayList<JToggleButton>();
                        for(JToggleButton questions: settingQuestionBoxes)
                        {               
                            if(questions.isSelected())
                            {               
                                System.out.println(questions.getActionCommand());
                            }
                        }           
                        CardLayout cL = (CardLayout)cardPanels.getLayout();
                        cL.show(cardPanels, "instructorPanel");
             }              
     }

所以基本上,当我调用这个System.out.println(questions.getActionCommand())时,我试图从点击的JRadio按钮中看到文本。现在,当我运行程序并选择一个按钮时。什么也没发生。

将按钮放入List<JToggleButton>(如ArrayList<JToggleButton>)中,然后在需要信息时遍历列表。

for (JToggleButton btn : myButtonList) {
   if (btn.isSelected() {
     String actionCommand = btn.getActionCommand();
     // use the actionCommand here
   }
}

请注意,JToggleButton是JRadioButton的父类,使用它可以将JRradioButtons、JCheckBoxes和JToggleButtons添加到列表中。由于您的JRadioButton不是ButtonGroup的一部分,也许您应该使用JCheckBox。


编辑

你现在已经发布了这个代码,声明它不起作用:

// Section (A)
ArrayList<JToggleButton> settingQuestionButton = new ArrayList<JToggleButton>();
// Section (B)
for(JToggleButton questions: settingQuestionButon)  
{               
    if(questions.isSelected())
    {               
        System.out.println(questions.getActionCommand());
    }
}

这个代码(A)和(B)都在你的程序中吗?如果是这样的话,它不起作用是有道理的。构造函数或某些设置方法中应该有(A)。您应该按照(A)编写代码,创建JRadioButtons或JCheckBoxes,设置它们的actionCommand字符串,将它们放置在GUI中,并将它们添加到ArrayList中。

第(B)部分代码,即增强的for循环,需要在响应事件而调用的代码中,可能在JButton或单选按钮的ActionListener中。

请查看此信息并填写详细信息。请考虑为我们创建并发布一个说明您的问题的sscce。


编辑2
您的代码令人困惑,因为您似乎有两个完全不同类型的变量,名称完全相同,并且您似乎认为这将赋予变量神奇的属性,使其能够知道它的"双胞胎"可能在做什么。Java并不是这样工作的,事实上,变量名并没有那么重要,也没有那么聪明,不允许它们具有任何这样的功能。相反,您的代码必须是智能的。我假设将检查多个JCheckBox,并且您希望在程序中的某个时刻检查哪些JCheckBox。如果是这样,那么在您的类中,您应该有一个List或ArrayList字段,类似

private List<JToggleButton> questionsList = new ArrayList<JToggleButton>();

这样,该字段将在整个课程中可用。

然后,在创建JCheckBoxes的地方,将它们添加到此列表中:

  private void setExamButtonActionPerformed(java.awt.event.ActionEvent evt)
   {                 
       if(evt.getActionCommand().equals("Set Exam"))
       {
           CardLayout cL = (CardLayout)cardPanels.getLayout();
           cL.show(cardPanels, "setExamPanel");
       }
       try
       {
           String theMessage = myObject.getMessage();          
           String delims = "(?=(0*([0-9]{1,2}|100)))"; 
           String[] questions = theMessage.split(delims);
           for (int j = 1; j < questions.length; j++)
           {
               settingQuestionBox = new JCheckBox(questions[j]);  // *** renamed to make more sense
               settingQuestionBox.setActionCommand(questions[j]);  // **** add actionCommand String
               questionsList.add(settingQuestionBox); // ****** add JCheckBox to List
               settingQuestionTextField = new JTextField("");
               jPanel1.add(settingQuestionBox);              
               jPanel1.add(settingQuestionTextField);
               jPanel1.revalidate();
               jPanel1.repaint();                  
           }
           //close streams and socket code
       }
       catch(Exception e)
       {
           // System.out.println(e);
           e.printStackTrace(); // ***** more informative
       }
   }

然后在你的代码的其他地方

  setExamQuestionButtonActionPerformed(java.awt.event.ActionEvent evt)
  {
     if(evt.getActionCommand().equals("Set Exam Question"))
     {           
        // ArrayList<JToggleButton> settingQuestionBoxes = new ArrayList<JToggleButton>();
        for(JToggleButton questions: questionsList)
        {               
            if(questions.isSelected())
            {               
                System.out.println(questions.getActionCommand());
            }
        }           
        CardLayout cL = (CardLayout)cardPanels.getLayout();
        cL.show(cardPanels, "instructorPanel");
      }
  }    

当然,您需要注意将ActionListener添加到按钮

相关内容

  • 没有找到相关文章

最新更新