如何用Java改变托盘图标?
我需要更改托盘图标,以便它可以通知用户未读消息的数量。
如何用 Java 做到这一点?
I need to change the tray icon, so that it would notify users about the number of unread messages.
How to do this with Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看一下
SystemTray
类。Take a look at the
SystemTray
class.如果您使用的是 java 6,那么我相信他的文章涵盖了您所需要的内容。
http://java.sun.com/developer/technicalArticles/J2SE/ Desktop/javase6/systemtray/
它有一个简单的示例文件,展示了如何设置 sytemtray 图标。它还涵盖了一些有用的方法。
具体来说是TrayIcon.setImage()
If you are using java 6 then his article covers what you need I believe.
http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/systemtray/
It has a simple example file that shows how to set the sytemtray icon. It also covers some of the usueful methods.
Specifically
TrayIcon.setImage()
对于 Java 6 之前的版本,我使用了 JTray,一个商业库。没关系。与 Java 6 类非常相似。
For versions of Java earlier than 6, I've used JTray, a commercial library. It's OK. Pretty similar to the Java 6 class.