创建Windows 10持久性通知

Bla*_*ine 5 java windows windows-10

我已经使用此答案在Windows 10操作中心成功创建了一个通知弹出窗口.问题是,通知在那里停留5秒钟,然后一旦消失就完全从动作中心移除.如何让操作中心保留通知,直到用户解除通知为止?这是代码:

import java.awt.*;
import java.awt.TrayIcon.MessageType;

import javax.swing.JOptionPane;

public class Win10Notif {

    public static void main(String[] args) throws AWTException, java.net.MalformedURLException {

        if (SystemTray.isSupported()) {
            Win10Notif td = new Win10Notif();
            td.displayTray();
        } else {
            System.err.println("System tray not supported!");
        }
    }


    public void displayTray() throws AWTException, java.net.MalformedURLException {
        //Obtain only one instance of the SystemTray object
        SystemTray tray = SystemTray.getSystemTray();

        //If the icon is a file
        Image image = Toolkit.getDefaultToolkit().createImage("icon.png");
        //Alternative (if the icon is on the classpath):
        //Image image = Toolkit.getToolkit().createImage(getClass().getResource("icon.png"));
        TrayIcon trayIcon = new TrayIcon(image, "Tray Demo");
        //Let the system resizes the image if needed
        trayIcon.setImageAutoSize(true);
        //Set tooltip text for the tray icon
        trayIcon.setToolTip("System tray icon demo");
        tray.add(trayIcon);
        trayIcon.displayMessage("Hello, World", "notification demo", MessageType.INFO);
    }
}
Run Code Online (Sandbox Code Playgroud)

Dra*_*hot 2

我认为这是由 Windows 本身或 JVM 的本机实现管理的。至少,公共 API 不提供为通知设置屏幕上特定时间的选项。

除非您需要坚持使用操作中心,否则您可以考虑使用外部库进行桌面通知,如下所示:

  • JCarrierPigeon:它很小,而且速度很快;尽管它依赖于时序框架库。甚至它带来的API也很小。
  • JTelegraph : JCarrierPigeon的扩展,带有一些开箱即用的库存图标和样式。当然,这个也依赖于时序框架库。
  • JCommunique:最完整的选项之一,这意味着更大的占地面积;但至少这个没有依赖关系,而且非常灵活,涵盖了很多用例场景。
  • Twinkle:它很时尚,但不太轻。包括图标、动画和其他开箱即用的资源。该代码在编译时有一些依赖项,但我认为可分发的 .jar 已经包含了所有捆绑的内容。对于非商业目的,它是免费的。
  • DS Desktop Notify:它体积小、重量轻、易于设置并且没有依赖项。它的使用方式与JOptionpane.showMessageDialog()手动发布通知对象之前构建和自定义通知对象的方式相同。可以自定义颜色主题、图标、屏幕上的时间和操作等属性,还提供库存主题和图标。

您可以免费获取并试用其中任何一个。