如何将 Java 应用程序放入系统托盘中?
我有一个小控制面板,只是我制作的一个小应用程序。 我想最小化/将控制面板与系统一起上/下,以及电池寿命、日期、网络等。
任何人都可以给我线索、教程或阅读内容的链接吗?
I have a little control-panel, just a little application that I made. I would like to minimize/put the control-panel up/down with the systemicons, together with battery life, date, networks etc.
Anyone that can give me a clue, link to a tutorial or something to read?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从 Java 6 开始,
支持此功能SystemTray
和TrayIcon
类。SystemTray
在其 Javadocs 中有一个相当广泛的示例:您还可以查看 本文,或此技术提示。
As of Java 6, this is supported in the
SystemTray
andTrayIcon
classes.SystemTray
has a pretty extensive example in its Javadocs:You could also check out this article, or this tech tip.
非常简单
为图像设置适当的路径,然后运行程序。 蒂:)
It's very simple
Set appropriate path for image and then run the program. t.y. :)
这是可用于访问和自定义系统托盘的代码:
This is the code you can use to access and customize the system tray: