如何在Java Swing程序中创建和使用单选按钮

说明

以下示例展示了如何在Java Swing程序中创建和使用单选按钮。

我们正在使用以下 API。

  • JRadioButton : 创建一个标准的单选按钮。

  • JRadioButton.setEnabled(false); : 禁用单选按钮。

  • JRadioButton.setMnemonic(KeyEvent.VK_C) : 设置单选按钮的键盘快捷键。

  • JRadioButton.setSelected(true) : 设置选中的单选按钮。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;

public class SwingTester {
   public static void main(String[] args) {
      createWindow();
   }

   private static void createWindow() {    
      JFrame frame = new JFrame("一点教程网:Swing Tester");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

      createUI(frame);
      frame.setSize(560, 200);      
      frame.setLocationRelativeTo(null);  
      frame.setVisible(true);
   }

   private static void createUI(final JFrame frame){  
      JPanel panel = new JPanel();
      LayoutManager layout = new FlowLayout();
      panel.setLayout(layout);       

      JRadioButton radioButton1 = new JRadioButton("Radio Button 1");
      JRadioButton radioButton2 = new JRadioButton("Radio Button 2");
      radioButton2.setEnabled(false);
      JRadioButton radioButton3 = new JRadioButton("Radio Button 3");
      radioButton3.setMnemonic(KeyEvent.VK_C);

      radioButton1.addActionListener(new ActionListener() {
         @Override
         public void actionPerformed(ActionEvent e) {
            Object source = e.getSource();
            JOptionPane.showMessageDialog(frame, 
               ((JRadioButton)source).getText() + ": " + ((JRadioButton)source).isSelected());
         }
      });  

      panel.add(radioButton1);
      panel.add(radioButton2);
      panel.add(radioButton3);

      frame.getContentPane().add(panel, BorderLayout.CENTER);    
   }
}

执行效果如下:

热门文章

优秀文章