微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

当用户点击关闭窗口时,如何将java应用程序放在Systemtray中

我从here看到如何使用托盘.所以我用这种方式使用它:

private void checkTray() throws IOException {
    if (SystemTray.isSupported()) {
        System.out.println("system tray supported");
        tray = SystemTray.getSystemTray();
        Image image = ImageIO.read(new FileInputStream(new File("logo.png")));
        ActionListener exitListener = new ActionListener() {

            public void actionPerformed(ActionEvent e) {
                System.out.println("Exiting....");
                System.exit(0);
            }
        };
        PopupMenu popup = new PopupMenu();
        MenuItem defaultItem = new MenuItem("Exit");
        defaultItem.addActionListener(exitListener);
        popup.add(defaultItem);
        defaultItem = new MenuItem("Open");
        defaultItem.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {
                setVisible(true);
                setExtendedState(JFrame.norMAL);
            }
        });
        popup.add(defaultItem);
        trayIcon = new TrayIcon(image,"SystemTray Demo",popup);
        trayIcon.setimageAutoSize(true);
    }
    addWindowStateListener(new WindowStateListener() {

        public void windowStateChanged(WindowEvent e) {
            if (e.getNewState() == ICONIFIED) {
                try {
                    tray.add(trayIcon);
                    setVisible(false);
                    System.out.println("added to SystemTray");
                } catch (AWTException ex) {
                    System.out.println("unable to add to tray");
                }
            }
            if(e.getNewState() == WindowEvent.WINDOW_CLOSING){
               try {
                    tray.add(trayIcon);
                    setVisible(false);
                    System.out.println("added to SystemTray");
                } catch (AWTException ex) {
                    System.out.println("unable to add to system tray");
                }
            }
            if (e.getNewState() == 7) {
                try {
                    tray.add(trayIcon);
                    setVisible(false);
                    System.out.println("added to SystemTray");
                } catch (AWTException ex) {
                    System.out.println("unable to add to system tray");
                }
            }
            if (e.getNewState() == MAXIMIZED_BOTH) {
                tray.remove(trayIcon);
                setVisible(true);
                System.out.println("Tray icon removed");
            }
            if (e.getNewState() == norMAL) {
                tray.remove(trayIcon);
                setVisible(true);
                System.out.println("Tray icon removed");
            }
        }
    });
}

并在构造函数中:

this.setDefaultCloSEOperation(JFrame.ICONIFIED);

当我点击关闭窗口时,我的应用程序没有进入系统尝试,但它自行关闭.我怎么解决呢?有人能帮我吗?

最佳答案
解决了这个问题:

this.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent windowEvent) {
    setExtendedState(JFrame.ICONIFIED); 
    }
});

原文地址:https://www.jb51.cc/java/438055.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐