使用 Java 闪烁任务栏(洋泾浜语言 || MSN)
我正在寻找正确方向的推动力。我有一个简单的聊天程序,完全用 Java 编写,并且正在寻找一种使任务栏图标闪烁的方法。最好以类似于 Pidgin 或 MSN 的方式。
我希望有一个独立于平台的解决方案,因为既有 Linux 也有 Windows 用户,而且最好完全使用 Java。
I'm looking for a push in the right direction. I have a simple chat program, written totally in Java, and am looking for a way to get the Taskbar icons to flash. Preferably in a manner similar to Pidgin, or MSN.
I'm hoping for a platform independent solution, as there are both Linux and Windows users, and preferably totally in Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,在标准 Swing API 中没有办法做到这一点。但您可以通过多种方式解决它:
此 forums.sun.com 主题中演示了这两种技术。
或者,您可以使用
TrayIcon.displayMessage()
;这可能更适合您,也可能不适合您,但请注意它可能无法跨平台工作。There is unfortunately no way to do this in the standard Swing API. But you could work around it in several ways:
Both techniques are demonstrated in this forums.sun.com thread.
Alternatively, instead of flashing, you could display a message in the system tray using
TrayIcon.displayMessage()
; that may or may not suit you better, but beware that it may not work cross-platform.