我试过了
Thread.setDefaultUncaughtExceptionHandler...
在主,以及在启动(阶段primaryStage)方法。 这是行不通的。
我也试过
public static void main(String[] args) {
try {
launch(args);
}catch(Throwable t) {
System.out.println(t.getMessage);
}
}
异常堆栈跟踪。
在在com.sun.glass.ui.gtk.GtkApplication javafx.concurrent.Task $ TaskCallable $ 2.run(Task.java:1251)在com.sun.javafx.application.PlatformImpl $ 3.run(PlatformImpl.java:141) ._runLoop(本地方法)在com.sun.glass.ui.gtk.GtkApplication $ 1 $ 1.run(GtkApplication.java:56)在java.lang.Thread.run(Thread.java:662)
感谢您的帮助。
如果检查代码Platform.runLater()
见下文),你将看到异常吞噬(线147分之146),因此默认未捕获异常处理程序将无法赶上他们-基于那块的代码,我不认为你有任何选择,但包括在您可运行try / catch块。
请注意, 这个问题已经被报告 (需要登录-注册是免费的),并将其固定在伦巴第(=的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");
}
}
};
}
准则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 }
一些管理线程,如UI事件处理程序和ExecutorServices捕捉抛出自己避免线程死亡。 只有那些死将使用此UncaughtExceptionHandler的线程。 如果你想捕捉抛出的异常,你所要做的thsi中可以抛出这些异常的方法。
如果UI事件处理程序报告异常的方式,将是一个不同的方法。
你的第二个例子将捕获的异常在该线程抛出。 抛出异常的其他线程将捕获该线程。
设置此事件的根节点为我工作。
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;
}
}
});
}
}