JavaFX 2 - 捕获所有运行时异常

时间:2012-09-07 13:14:46

标签: java exception-handling javafx-2

我试过了

Thread.setDefaultUncaughtExceptionHandler...


在main中,也在start(Stage primaryStage)方法中。它不起作用。
我也试过了

public static void main(String[] args) {
 try {
  launch(args);
 }catch(Throwable t) {
  System.out.println(t.getMessage);
 }
}


异常堆栈跟踪。

  

在javafx.concurrent.Task $ TaskCallable $ 2.run(Task.java:1251)at at   com.sun.javafx.application.PlatformImpl $ 3.run(PlatformImpl.java:141)     at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)at   com.sun.glass.ui.gtk.GtkApplication $ 1 $ 1.run(GtkApplication.java:56)     在java.lang.Thread.run(Thread.java:662)

感谢您的帮助。

3 个答案:

答案 0 :(得分:15)

如果检查Platform.runLater()的代码(见下文),您将看到吞下异常(第146/117行),因此默认的未捕获异常处理程序将无法捕获它们 - 基于在那段代码中,我认为你没有任何选择,只能在你的runnables中包含try / catch块。

请注意this issue has been reported(需要登录 - 注册是免费的)并且应该在Lombard中修复(= Java FX 8.0将于明年与Java 8一起发布)。

您也可以创建一个实用工具方法并调用

Platform.runLater(getFxWrapper(yourRunnable));

public static Runnable getFxWrapper(final Runnable r) {
    return new Runnable() {

        @Override
        public void run() {
            try {
                r.run();
            } catch (Exception e) {
                //here you probably want to log something
                System.out.println("Found an exception");
            }
        }
    };
}

Code of Platform.runLater

  120     private static void runLater(final Runnable r, boolean exiting) {
  121         if (!initialized.get()) {
  122             throw new IllegalStateException("Toolkit not initialized");
  123         }
  124 
  125         pendingRunnables.incrementAndGet();
  126         waitForStart();
  127 
  128         if (SystemProperties.isDebug()) {
  129             Toolkit.getToolkit().pauseCurrentThread();
  130         }
  131 
  132         synchronized (runLaterLock) {
  133             if (!exiting && toolkitExit.get()) {
  134                 // Don't schedule a runnable after we have exited the toolkit
  135                 pendingRunnables.decrementAndGet();
  136                 return;
  137             }
  138 
  139             Toolkit.getToolkit().defer(new Runnable() {
  140                 @Override public void run() {
  141                     try {
  142                         r.run();
  143                         pendingRunnables.decrementAndGet();
  144                         checkIdle();
  145                     } catch (Throwable t) {
  146                         System.err.println("Exception in runnable");
  147                         t.printStackTrace();
  148                     }
  149                 }
  150             });
  151         }
  152     }

答案 1 :(得分:2)

某些托管线程(如UI事件处理程序和ExecutorServices)会自行捕获Throwable以避免线程死亡。只有死亡的线程才会使用此UncaughtExceptionHandler。如果你想捕获抛出的异常,你必须在可能抛出这些异常的方法中执行此操作。

如果UI事件处理程序有一种报告异常的方法,那么它将是一种不同的方法。

您的第二个示例将捕获该线程中抛出的异常。其他线程抛出的异常将捕获该线程。

答案 2 :(得分:2)

将EventDispatcher设置为根节点为我工作。

 public class Frame extends Pane {
    Frame() {
        setEventDispatcher(new EventDispatcher() {

            @Override
            public Event dispatchEvent(Event event, EventDispatchChain chain) {
                try {
                    return chain.dispatchEvent(event);
                } catch (final Exception e) {
                    // handle all the exceptions here 
                    return null;
                }
            }
        });
    }
}