您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關JRadioButton組件怎么在Java中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
JRadioButton是Swing中的單選框。所謂單選框是指,在同一個組內(nèi)雖然有多個單選框存在,然而同一時刻只能有一個單選框處于選中狀態(tài)。它就像收音機的按鈕,按下一個時此前被按下的會自動彈起,故因此得名。因此,在添加JRadioButton控件時,要記得將它們添加到同一個ButtonGroup中。
JRadioButton的常用方法如下圖所示:
可以為它添加ActionListener對象來響應事件。這里有一個問題,當多個JRadioButton共用一個事件監(jiān)聽器時,如何獲取產(chǎn)生事件的按鈕?
有4種方法:
1.遍歷這些按鈕并檢查是否選中,這種方法比較笨重。
2.使用事件的getActionCommand()
方法,這需要事先為每個控件設置ActionCommand。
3.使用事件的getSource,并轉化為控件對象。
4.使用ButtonGroup的getSelection方法,它返回的并不是控件,而是那個控件的ButtonModel,需再次調(diào)用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; /* * source code from 《java核心技術 卷1 基礎知識》 P329 */ @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(); // 二維數(shù)組存儲按鈕屬性,第一維是按鈕名稱,第二維是字體大小 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); // 構造一個監(jiān)聽器,響應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 // 創(chuàng)建窗體并指定標題 JRadioButtonDemo frame = new JRadioButtonDemo(); // 關閉窗體后退出程序 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // 自動適配所有控件大小 // frame.pack(); // 設置窗體位置在屏幕中央 frame.setLocationRelativeTo(null); // 顯示窗體 frame.setVisible(true); } }
運行效果如下:
看完上述內(nèi)容,你們對JRadioButton組件怎么在Java中使用有進一步的了解嗎?如果還想了解更多知識或者相關內(nèi)容,請關注億速云行業(yè)資訊頻道,感謝大家的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。