如何修改Swing的Window默认图标

说明

以下示例展示了如何修改Swing的Window默认图标。

我们正在使用以下 API。

  • ImageIcon : 创建图像图标。

  • JFrame.setIconImage() : 将图标设置为窗口。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;

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);
      ImageIcon arrowIcon = null;

      java.net.URL imgURL = SwingTester.class.getResource("arrow.jpg");
      if (imgURL != null) {
         arrowIcon = new ImageIcon(imgURL);
         frame.setIconImage(arrowIcon.getImage());
      } else {
         JOptionPane.showMessageDialog(frame, "Icon image not found.");
      }

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

   private static void createUI(JFrame frame){
      JPanel panel = new JPanel();
      LayoutManager layout = new FlowLayout();
      panel.setLayout(layout);
      panel.add(new JLabel("Hello World!"));

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

执行效果如下:

热门文章

优秀文章