java运⾏时异常捕获_JavaFX2-捕获所有运⾏时异常
⼩编典典
如果检查代码Platform.runLater()(见下⽂),您将看到异常被吞没(第146/147⾏),因此默认的未捕获异常处理程序将⽆法捕获它们-基于该段代码,我不知道除了在可运⾏对象中包含try / catch块外,您别⽆选择。
请注意,已经报告了此问题(需要登录-免费注册),并且应该在Lombard中进⾏修复(=明年与Java 8⼀起发布的Java FX 8.0)。
您也可以创建⼀个实⽤程序⽅法并调⽤
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");
}
}
};
}
120 private static void runLater(final Runnable r, boolean exiting) {
exited121 if (!()) {
122 throw new IllegalStateException("Toolkit not initialized");
123 }
124
125 pendingRunnables.incrementAndGet();
126 waitForStart();
127
128 if (SystemProperties.isDebug()) {
Toolkit().pauseCurrentThread();
130 }
131
132 synchronized (runLaterLock) {
133 if (!exiting && ()) {
134 // Don't schedule a runnable after we have exited the toolkit 135 pendingRunnables.decrementAndGet();
136 return;
137 }
138
Toolkit().defer(new Runnable() {
140 @Override public void run() {
141 try {
142 r.run();
143 pendingRunnables.decrementAndGet();
144 checkIdle();
145 } catch (Throwable t) {
println("Exception in runnable");
147 t.printStackTrace();
148 }
149 }
150 });
151 }
152 }
2020-09-21

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。