我正在核心 java 中构建一个项目。但是我坚持制作一个单选按钮组(用于输入性别(男性/女性)。为此,我需要一个单选按钮组,以便一次只选择一个单选按钮;并相应地将输入输入数据库。请帮忙。
问问题
89413 次
3 回答
30
请尝试使用 ButtonGroup 组件并将两个名为 male 和 female 的 JRadioButton 组件添加到 ButtonGroup 对象,然后使用 setVisible(true) 在 JFrame 中显示它;方法。
下面的代码应该很有用:-
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JRadioButton;
public class Rb extends JFrame {
Rb() {
JRadioButton male = new JRadioButton("male");
JRadioButton female = new JRadioButton("Female");
ButtonGroup bG = new ButtonGroup();
bG.add(male);
bG.add(female);
this.setSize(100, 200);
this.setLayout(new FlowLayout());
this.add(male);
this.add(female);
male.setSelected(true);
this.setVisible(true);
}
public static void main(String args[]) {
Rb j = new Rb();
}
}
于 2013-07-21T11:54:56.867 回答
6
这是一个单选按钮分组:
JRadioButton button1 = ...;
button1.setSelected(true);
JRadioButton button2 = ...;
ButtonGroup group = new ButtonGroup();
group.add(button1);
group.add(button2);
于 2013-07-21T09:43:54.413 回答
5
JPanel radioButtonPanel = new JPanel();
append = new JRadioButton("append");
build = new JRadioButton("x.x.1");
build.setSelected(true); //sets this button as selected on startup
small = new JRadioButton("x.1.x");
huge = new JRadioButton("1.x.x");
// Create the button group to keep only one selected.
ButtonGroup btnGroup = new ButtonGroup();
btnGroup.add(append);
btnGroup.add(build);
btnGroup.add(small);
btnGroup.add(huge);
然后你将你的按钮添加到你的 JPanel 或类似的东西。
于 2013-07-21T09:43:37.270 回答