避免在Java(Netbeans)中选择多个单选按钮

时间:2015-11-30 18:15:28

标签: java netbeans

我似乎无法纠正这个问题。我在GUI中有两个单选按钮,我不能只选择一个,而另一个没有被选中。

    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    // TODO add your handling code here:

    ButtonGroup group = new ButtonGroup();  
    group.add(jRadioButton1); 
    group.add(jRadioButton2); 

    if(jRadioButton1.isSelected()){
        jLabel1.setText("1");
    }

    else if(jRadioButton2.isSelected()){
        jLabel1.setText("2");
    }
}                    

0 个答案:

没有答案