到底有多少个小谢 2020-03-16 16:10 采纳率: 0%
浏览 677
已采纳

请问有人知道如何用java向win10的通知栏推送消息吗?

我在自己的电脑上用tomcat部署了一套java web 系统,我希望系统里面有提醒或待办的时候能够在没有启动浏览器的情况下,java后端直接定时向win10的通知栏推送消息。

  • 写回答

1条回答 默认 最新

  • threenewbee 2020-03-16 18:39
    关注

    https://stackoverflow.com/questions/34490218/how-to-make-a-windows-notification-in-java

    import java.awt.*;
    import java.awt.TrayIcon.MessageType;
    
    public class TrayIconDemo {
    
        public static void main(String[] args) throws AWTException {
            if (SystemTray.isSupported()) {
                TrayIconDemo td = new TrayIconDemo();
                td.displayTray();
            } else {
                System.err.println("System tray not supported!");
            }
        }
    
        public void displayTray() throws AWTException {
            //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.getDefaultToolkit().createImage(getClass().getResource("icon.png"));
    
            TrayIcon trayIcon = new TrayIcon(image, "Tray Demo");
            //Let the system resize 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);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?