我在这里制作了一个虚拟程序......
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class MyClass1 implements ActionListener
{
JFrame fr;
JRadioButton opt[]=new JRadioButton[2];
JButton btnext;
JRadioButton r1;
MyClass1()
{
fr=new JFrame();
fr.setLayout(null);
opt[0]=new JRadioButton("Hello");
opt[1]=new JRadioButton("Welcome");
r1=new JRadioButton("Jealsous");
btnext=new JButton();
ButtonGroup bg=new ButtonGroup();
bg.add(opt[0]);
bg.add(opt[1]);
opt[0].setBounds(50,100,200,30);
r1.setBounds(50,200,200,30);
opt[1].setBounds(50,150,200,30);
btnext.setBounds(400,350,100,30);
fr.add(opt[1]);
fr.add(opt[0]);
fr.add(btnext);
fr.add(r1);
btnext.addActionListener(this);
fr.setSize(800,500);
fr.setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
System.out.println(opt[0].getText());
opt[0].setSelected(false); //not working
r1.setSelected(false); //working
}
public static void main(String[] s)
{
new MyClass1();
}
}
在此代码中,当我点击按钮时,radiobutton是一个数组 opt [0]仍然被选中。 而未选择radiobutton r1。所以基本上当我用对象数组调用函数setSelected时,它什么都不做,当我用不同的对象调用时它运行正常。在大程序中我需要对象数组,以便我可以在for循环中使用它并将其初始化为来自String 2Dimensional Array的某个值。
答案 0 :(得分:6)
你可以buttonGroup.clearSelection()
。
但此方法仅适用于java 1.6+。
http://java.sun.com/javase/6/docs/api/javax/swing/ButtonGroup.html#clearSelection()
@Override
public void actionPerformed(ActionEvent e)
{
System.out.println(opt[0].getText());
bg.clearSelection();
r1.setSelected(false); //working
}