java systemtray_当用户点击关闭窗口时,如何将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);

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值