文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

JRadioButton组件怎么在Java中使用

2023-05-30 21:20

关注

今天就跟大家聊聊有关JRadioButton组件怎么在Java中使用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

JRadioButton是Swing中的单选框。所谓单选框是指,在同一个组内虽然有多个单选框存在,然而同一时刻只能有一个单选框处于选中状态。它就像收音机的按钮,按下一个时此前被按下的会自动弹起,故因此得名。因此,在添加JRadioButton控件时,要记得将它们添加到同一个ButtonGroup中。

JRadioButton的常用方法如下图所示:

JRadioButton组件怎么在Java中使用

可以为它添加ActionListener对象来响应事件。这里有一个问题,当多个JRadioButton共用一个事件监听器时,如何获取产生事件的按钮?

有4种方法:

遍历这些按钮并检查是否选中,这种方法比较笨重。

使用事件的getActionCommand()方法,这需要事先为每个控件设置ActionCommand。

使用事件的getSource,并转化为控件对象。

使用ButtonGroup的getSelection方法,它返回的并不是控件,而是那个控件的ButtonModel,需再次调用ButtonModel的getActionCommand方法。

使用demo如下:

JRadioButtonDemo.java

package awtDemo;import java.awt.BorderLayout;import java.awt.Font;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.util.HashMap;import java.util.Map;import javax.swing.ButtonGroup;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JPanel;import javax.swing.JRadioButton;@SuppressWarnings("serial")public class JRadioButtonDemo extends JFrame {  int DEFAULT_WIDTH = 600;  int DEFAULT_HEIGHT = 400;  private JLabel label;  private JPanel buttonPanel;  private ButtonGroup group;  private static final int DEFAULT_SIZE = 12;  private Map actionCommandSizeMap = new HashMap();  // 二维数组存储按钮属性,第一维是按钮名称,第二维是字体大小  private String[][] buttonAttributes = {      { "Small", "Medium", "Large", "Extra" }, { "8", "12", "18", "36" } };  public JRadioButtonDemo() {    setTitle("JRadioButtonDemo - www.jb51.net");    setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);    // 添加label    label = new JLabel("欢迎访问编程网 www.jb51.net");    label.setFont(new Font("Serif", Font.PLAIN, DEFAULT_SIZE));    add(label, BorderLayout.CENTER);    // 添加buttonPanel,它包含4个radioButton    buttonPanel = new JPanel();    group = new ButtonGroup();    add(buttonPanel, BorderLayout.SOUTH);    // 添加radioButton    for (int i = 0; i < buttonAttributes[0].length; i++) {      addRadioButton(buttonAttributes[0][i],          Integer.parseInt(buttonAttributes[1][i]));      // 将按钮名称和字体大小添加为对应表,名称等同于actionCommand      actionCommandSizeMap.put(buttonAttributes[0][i],          Integer.parseInt(buttonAttributes[1][i]));    }  }  public void addRadioButton(String name, final int size) {    boolean selected = size == DEFAULT_SIZE;    JRadioButton button = new JRadioButton(name, selected);    button.setActionCommand(name);// 设置name即为actionCommand    group.add(button);    buttonPanel.add(button);    // 构造一个监听器,响应checkBox事件    ActionListener actionListener = new ActionListener() {      public void actionPerformed(ActionEvent e) {        // 1.通过eActionCommand        String eActionCommand = e.getActionCommand();        System.out.printf("e.getActionCommand() is %s\n",            eActionCommand);        // 2.通过getSource()        Object sourceObject = e.getSource();        if (sourceObject instanceof JRadioButton) {          JRadioButton sourceButton = (JRadioButton) sourceObject;          System.out.printf("selected JRadioButton is %s\n",              sourceButton.getText());        }        // 3.通过groupSelectionActionCommand        String groupSelectionActionCommand = group.getSelection()            .getActionCommand();        System.out.printf("groupSelectionActionCommand is %s\n",            groupSelectionActionCommand);        label.setFont(new Font("Serif", Font.PLAIN,            actionCommandSizeMap.get(groupSelectionActionCommand)));      }    };    button.addActionListener(actionListener);  }  public static void main(String[] args) {    // TODO Auto-generated method stub    // 创建窗体并指定    JRadioButtonDemo frame = new JRadioButtonDemo();    // 关闭窗体后退出程序    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    // 自动适配所有控件大小    // frame.pack();    // 设置窗体位置在屏幕中央    frame.setLocationRelativeTo(null);    // 显示窗体    frame.setVisible(true);  }}

运行效果如下:

JRadioButton组件怎么在Java中使用

看完上述内容,你们对JRadioButton组件怎么在Java中使用有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯