Swing 示例 - 使用 HTML 按钮

以下示例展示了如何在 Java Swing 应用程序中创建 HTML 按钮。

我们使用以下 API。

  • JButton(HTML) − 创建包含 HTML 内容的标准按钮。确保 html 内容的开头存在 <html>。

  • setForeground − 设置按钮的前景色。

  • setBackground − 设置按钮的背景色。

  • setFont() − 设置按钮上使用的字体。

示例

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.LayoutManager;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

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);       

      String htmlContent = "<html><center><b><u>N</u>ext</b><br>"
         + "<font color=#eeeeee>Move Ahead</font>";     

      JButton nextButton = new JButton(htmlContent);
      nextButton.setForeground(new Color(0xaabbcc));
      nextButton.setBackground(new Color(0x444444));
      nextButton.setMnemonic(KeyEvent.VK_N);
      Font font = nextButton.getFont().deriveFont(Font.ITALIC);
      nextButton.setFont(font);
      nextButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(frame, "Button clicked.");
         }
      });  

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

输出

创建带有图标和文本的按钮

swingexamples_buttons.html