How to add an image to a JFrame title bar?(如何将图像添加到 JFrame 标题栏?)
问题描述
我想在 javax.swing.JFrame
标题栏添加一个图像(小图标).
I want to add an image (small icon) to the javax.swing.JFrame
title bar.
我该怎么做?
推荐答案
由于 JPanel
没有标题栏,我假设您指的是 JFrame代码>.话虽如此,请使用
setIconImage(...)
.
Since JPanel
doesn't have a title bar, I'm assuming that you're referring to JFrame
. That being said, use setIconImage(...)
.
这里是一个使用setIconImages()
的例子.
Here is an example of using setIconImages()
.
import java.awt.Image;
import javax.swing.*;
import javax.imageio.ImageIO;
import java.net.URL;
import java.util.*;
class FrameIcons {
public static void main(String[] args) throws Exception {
URL url16 = new URL("http://i.stack.imgur.com/m0KKu.png");
URL url32 = new URL("http://i.stack.imgur.com/LVVMb.png");
final List<Image> icons = new ArrayList<Image>();
icons.add(ImageIO.read(url16));
icons.add(ImageIO.read(url32));
SwingUtilities.invokeLater( new Runnable() {
public void run() {
JFrame f = new JFrame("Frame Icons");
f.setIconImages(icons);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setLocationByPlatform(true);
f.setSize(200,100);
f.setVisible(true);
}
});
}
}
使用 16x16 图标的框架
这篇关于如何将图像添加到 JFrame 标题栏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将图像添加到 JFrame 标题栏?


基础教程推荐
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01