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?
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?
看看SystemTray
课堂。
如果您使用的是 java 6,那么他的文章涵盖了我认为您需要的内容。
http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/systemtray/
它有一个简单的示例文件,显示如何设置系统托盘图标。它还涵盖了一些常用的方法。
具体来说TrayIcon.setImage()
对于 6 之前的 Java 版本,我使用了 JTray,一个商业库。没关系。非常类似于 Java 6 类。