java - 为什么 TrayIcon 不出现?

标签 java image swing system-tray trayicon

我正在尝试在已出现的托盘中添加 TrayIcon。我是 Java 新手,所以我可能会调用错误的方法。有人可以帮我吗?我使用的代码是:

if (!SystemTray.isSupported()) {
    System.out.println("SystemTray is not supported");
    return;
}

final SystemTray tray = SystemTray.getSystemTray();
Image image = Toolkit.getDefaultToolkit().getImage("systemtray.png");
PopupMenu popup = new PopupMenu();
final TrayIcon trayIcon = new TrayIcon(image, "The Tip Text", popup);
trayIcon.setImageAutoSize(true);
try {
    tray.add(trayIcon);
} catch (AWTException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

ps.:图像在同一个代码包中。

最佳答案

这是一个例子。看看你可能哪里出了问题。

  • 获取图像 enter image description here

    Image image= ImageIO.read(getClass().getResource("/resources/stackoverflow1.png"));
    
<小时/>
  • 文件结构

enter image description here

<小时/>
  • 完整的运行程序

这里

import java.awt.*;
import java.awt.event.*;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
import javax.swing.UIManager;

public class HideToSystemTray extends JFrame {

    TrayIcon trayIcon;
    SystemTray tray;

    HideToSystemTray() throws IOException {
        super("SystemTray test");
        System.out.println("creating instance");
        try {
            System.out.println("setting look and feel");
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (Exception e) {
            System.out.println("Unable to set LookAndFeel");
        }
        if (SystemTray.isSupported()) {
            System.out.println("system tray supported");
            tray = SystemTray.getSystemTray();

            Image image = ImageIO.read(getClass().getResource("/resources/stackoverflow1.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);
        } else {
            System.out.println("system tray not supported");
        }
        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() == 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");
                }
            }
        });
        setIconImage(ImageIO.read(getClass().getResource("/resources/stackoverflow1.png")));

        setVisible(true);
        setSize(300, 200);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    public static void main(String[] args) throws IOException {
        new HideToSystemTray();
    }
}
<小时/>
  • 结果

enter image description here

关于java - 为什么 TrayIcon 不出现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21753252/

相关文章:

java - 解决 NetBeans Maven 项目中的依赖关系问题

java - 回收站 View : keep changing data during scroll

java - 在 Groovy 1.x 中编写 Java8 Lambda

ios - 如何添加到 xcode 中的媒体库?

image - JFreeChart 和 iText : black image when creating pdf

java - 为什么 Swing 里的Container里有太多的分层?

java - 检索大量 DTO 最快的 Java 集合是什么?

ruby-on-rails - 使用 Rails 在客户端调整图像大小

java - 是否可以在java swing中从ListSelectionEvents中提取字符串?

java - 如何将 Java 桌面应用程序移植到 Netbeans 7.1