20

我正在使用 JavaFX UI 制作一个简单的应用程序,该应用程序只是这样做:

  • 有一个系统托盘图标,单击时会显示一个窗口,再次单击时会隐藏它,右键单击时会显示一个带有 1 个“退出”项的菜单

我已经制作了 UI 并将应用程序放入系统托盘中,但我无法使用 Normal Actionlistener 方法显示/隐藏它,但出现此错误:

Exception in thread "AWT-EventQueue-0" java.lang.IllegalStateException: Not on FX application thread; currentThread = AWT-EventQueue-0

这是代码:

import java.awt.Image;
import java.awt.MenuItem;
import java.awt.PopupMenu;
import java.awt.SystemTray;
import java.awt.Toolkit;
import java.awt.TrayIcon;
import java.awt.event.ActionListener;


import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class Main extends Application{
    public static void main(String[] args) { 
        launch(args);       
    }

    @Override
    public void start(final Stage primaryStage) {
        primaryStage.setTitle("Hello World!");
        Button btn = new Button();
        btn.setText("Say 'Hello World'");
        btn.setOnAction(new EventHandler<ActionEvent>() {

            @Override
            public void handle(ActionEvent event) {
                System.out.println("Hello World!");            }
        });

        StackPane root = new StackPane();
        root.getChildren().add(btn);
        primaryStage.setScene(new Scene(root, 300, 250));
        primaryStage.show();

        if (SystemTray.isSupported()) {         
            SystemTray tray = SystemTray.getSystemTray();
            Image image = Toolkit.getDefaultToolkit().getImage("Germany-politcal-map.jpg");
            PopupMenu popup = new PopupMenu();
            MenuItem item = new MenuItem("Exit");

            popup.add(item);

            TrayIcon trayIcon = new TrayIcon(image, "Amr_Trial", popup);

            ActionListener listener = new ActionListener() {                
                @Override
                public void actionPerformed(java.awt.event.ActionEvent arg0) {
                    // TODO Auto-generated method stub
                    System.exit(0);                 
                }               
            };                       

            ActionListener listenerTray = new ActionListener() {                
                @Override
                public void actionPerformed(java.awt.event.ActionEvent arg0) {
                    // TODO Auto-generated method stub                  
                    primaryStage.hide();
                }                   
            };            

            trayIcon.addActionListener(listenerTray);
            item.addActionListener(listener);

            try{
              tray.add(trayIcon);
            }catch (Exception e) {
              System.err.println("Can't add to tray");
            }
          } else {
            System.err.println("Tray unavailable");
          } 
        //
    }
}
4

5 回答 5

22

将代码包装在 actionListener 中,它在Platform.runLater中回调 JavaFX 。这将在 JavaFX 应用程序线程上执行与 JavaFX 系统接口的代码,而不是尝试在 Swing 事件线程上执行它(这是导致您出现问题的原因)。

例如:

ActionListener listenerTray = new ActionListener() {                
  @Override public void actionPerformed(java.awt.event.ActionEvent event) {
    Platform.runLater(new Runnable() {
      @Override public void run() {
        primaryStage.hide();
      }
    });
  }                   
};            

默认情况下,应用程序将在最后一个窗口隐藏时关闭。要覆盖此默认行为,请在显示第一个应用程序阶段之前调用Platform.setImplicitExit(false) 。然后,当您需要应用程序真正关闭时,您将需要显式调用Platform.exit() 。


我创建了一个在 JavaFX 应用程序中使用 AWT 系统托盘的演示

于 2012-09-24T19:52:11.387 回答
4

您应该只修改 javafx 线程上的 javafx 类,托盘图标上的侦听器很可能在 swing 线程上运行。您可以通过向 Platform#runLater 发布可运行文件来做到这一点,如下所示:

Platform.runLater(new Runnable() {
    public void run() {
        primaryStage.hide();
    }
});
于 2012-09-24T19:50:39.403 回答
1

JavaFX 尚不支持系统托盘。您可以在以下 JIRA 问题下跟踪此任务的进度:https
://bugs.openjdk.java.net/browse/JDK-8090475 该问题还提供了一种解决方法,可用于 JavaFX 8 以获得基本支持.

JavaFX 8 没有计划该功能,因此它可能会在以下更新之一甚至 JavaFX 9 中发布。

于 2013-09-01T10:24:13.757 回答
1

无耻的自插拔,但我为 JavaFX 图标开发了一个小型包装库,它使用名为FXTrayIcon的 SystemTray 。

它抽象出所有讨厌的 AWT 位,无需猜测您应该在哪个线程上运行代码。它可作为 Maven Central 的依赖项使用。

于 2020-11-18T13:12:44.020 回答
0

我解决了你的问题。带有 AWT 的 JavaFX。我有一个应用程序示例,当您进行左单击时显示和隐藏。我真的希望对你有用

import java.awt.AWTException;
import java.awt.Image;
import java.awt.SystemTray;
import java.awt.Toolkit;
import java.awt.TrayIcon;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.net.URL;
import javafx.application.Application;
import static javafx.application.Application.launch;
import javafx.application.Platform;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class MainApp2 extends Application {

int stateWindow = 1;

@Override
public void start(final Stage stage) throws Exception {

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

URL url = System.class.getResource("/image/yourImage.png");
Image image = Toolkit.getDefaultToolkit().getImage(url);

//image dimensions must be 16x16 on windows, works for me
final TrayIcon trayIcon = new TrayIcon(image, "application name");

final SystemTray tray = SystemTray.getSystemTray();

//Listener left clic XD
trayIcon.addMouseListener(new MouseAdapter() {
    @Override
    public void mouseClicked(MouseEvent event) {
        if (event.getButton() == MouseEvent.BUTTON1) {
            Platform.runLater(new Runnable() {
                @Override
                public void run() {
                    if (stateWindow == 1) {
                        stage.hide();
                        stateWindow = 0;
                    } else if (stateWindow == 0) {
                        stage.show();
                        stateWindow = 1;
                    }
                }
            });
        }

    }
});

try {
    tray.add(trayIcon);
} catch (AWTException e) {
    System.out.println("TrayIcon could not be added.");
}

stage.setTitle("Hello man!");
Button btn = new Button();
btn.setText("Say 'Hello man'");
btn.setOnAction(new EventHandler<ActionEvent>() {

    @Override
    public void handle(ActionEvent event) {
        System.out.println("Hello man!");
    }
});
StackPane root = new StackPane();
root.getChildren().add(btn);
stage.setScene(new Scene(root, 300, 250));
Platform.setImplicitExit(false);
stage.show();

}

/**
 * The main() method is ignored in correctly deployed JavaFX application.
 * main() serves only as fallback in case the application can not be
 * launched through deployment artifacts, e.g., in IDEs with limited FX
 * support. NetBeans ignores main().
 *
 * @param args the command line arguments
 */
public static void main(String[] args) {
launch(args);
}
}
于 2020-04-05T21:53:00.747 回答