JavaFX Clock小部件随机抛出异常

时间:2016-02-26 11:34:19

标签: java eclipse javafx time-format

我编写了一个扩展Java Text类JavaFX的Clock Widget。更新时间我正在使用基本上将文本设置为当前系统时间的Task。当我在Eclipse中运行此应用程序时,它有时会在我调用NullpointerException的行中抛出stage.show()

这是我的小部件源代码的样子:

package clock;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

import javafx.concurrent.Task;
import javafx.scene.text.Font;
import javafx.scene.text.Text;

public class CurrentClockText extends Text {
    private final DateTimeFormatter formatter;

    public static final int HOUR = 1;
    public static final int HOUR_MINUTE = 2;
    public static final int HOUR_MINUTE_SECOND = 3;
    public static final int HOUR_MINUTE_SECOND_MILLISECOND = 4;

    private final long updateInterval;

    private final Task<Void> updater = new Task<Void>() {
        @Override
        protected Void call() throws Exception {
            while (true) {
                LocalDateTime now = LocalDateTime.now();
                String nowTextual = formatter.format(now);
                setText(nowTextual);

                try {
                    Thread.sleep(updateInterval);
                } catch (InterruptedException ignore) {
                }
            }
        }
    };

    public CurrentClockText() {
        this(HOUR_MINUTE);
    }

    public CurrentClockText(final int detailLevel) {
        String timeFormat = "";
        switch (detailLevel) {
        case HOUR:
            timeFormat = "HH";
            updateInterval = 60000;
            break;
        case HOUR_MINUTE:
            timeFormat = "HH:mm";
            updateInterval = 15000;
            break;
        case HOUR_MINUTE_SECOND:
            timeFormat = "HH:mm:ss";
            updateInterval = 500;
            break;
        case HOUR_MINUTE_SECOND_MILLISECOND:
            updateInterval = 1;
            timeFormat = "HH:mm:ss.S";
            break;
        default:
            throw new IllegalArgumentException(
                    "Unknown detail level for Clock: " + detailLevel);
        }

        setFont(new Font("Verdana", 28));

        formatter = DateTimeFormatter.ofPattern(timeFormat);
        Thread updaterThread = new Thread(updater, "CurrentClockText.updaterThread");
        updaterThread.setDaemon(true);
        updaterThread.start();
    }
}

这是主要课程:

package clock;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;

public class Boot extends Application {

    @Override
    public void start(Stage stage) throws Exception {
        BorderPane pane = new BorderPane();

        CurrentClockText clock = new CurrentClockText(4);
        pane.setCenter(clock);

        Scene scene = new Scene(pane);
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        Boot.launch(args);
    }

}

这是堆栈跟踪:

Exception in Application start method
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(Unknown Source)
    at com.sun.javafx.application.LauncherImpl.launchApplication(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at sun.launcher.LauncherHelper$FXHelper.main(Unknown Source)
Caused by: java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(Unknown Source)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$152(Unknown Source)
    at com.sun.javafx.application.LauncherImpl$$Lambda$50/14845382.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException
    at com.sun.javafx.text.PrismTextLayout.addTextRun(Unknown Source)
    at com.sun.javafx.text.GlyphLayout.addTextRun(Unknown Source)
    at com.sun.javafx.text.GlyphLayout.breakRuns(Unknown Source)
    at com.sun.javafx.text.PrismTextLayout.buildRuns(Unknown Source)
    at com.sun.javafx.text.PrismTextLayout.layout(Unknown Source)
    at com.sun.javafx.text.PrismTextLayout.ensureLayout(Unknown Source)
    at com.sun.javafx.text.PrismTextLayout.getBounds(Unknown Source)
    at javafx.scene.text.Text.getLogicalBounds(Unknown Source)
    at javafx.scene.text.Text.impl_computeLayoutBounds(Unknown Source)
    at javafx.scene.Node$12.computeBounds(Unknown Source)
    at javafx.scene.Node$LazyBoundsProperty.get(Unknown Source)
    at javafx.scene.Node$LazyBoundsProperty.get(Unknown Source)
    at javafx.scene.Node.getLayoutBounds(Unknown Source)
    at javafx.scene.Node.prefWidth(Unknown Source)
    at javafx.scene.Node.minWidth(Unknown Source)
    at javafx.scene.layout.Region.computeChildPrefAreaWidth(Unknown Source)
    at javafx.scene.layout.BorderPane.getAreaWidth(Unknown Source)
    at javafx.scene.layout.BorderPane.computePrefWidth(Unknown Source)
    at javafx.scene.Parent.prefWidth(Unknown Source)
    at javafx.scene.layout.Region.prefWidth(Unknown Source)
    at javafx.scene.Scene.getPreferredWidth(Unknown Source)
    at javafx.scene.Scene.resizeRootToPreferredSize(Unknown Source)
    at javafx.scene.Scene.preferredSize(Unknown Source)
    at javafx.scene.Scene.impl_preferredSize(Unknown Source)
    at javafx.stage.Window$9.invalidated(Unknown Source)
    at javafx.beans.property.BooleanPropertyBase.markInvalid(Unknown Source)
    at javafx.beans.property.BooleanPropertyBase.set(Unknown Source)
    at javafx.stage.Window.setShowing(Unknown Source)
    at javafx.stage.Window.show(Unknown Source)
    at javafx.stage.Stage.show(Unknown Source)
    at clock.Boot.start(Boot.java:19)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$159(Unknown Source)
    at com.sun.javafx.application.LauncherImpl$$Lambda$53/19600960.run(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$172(Unknown Source)
    at com.sun.javafx.application.PlatformImpl$$Lambda$45/18503843.run(Unknown Source)
    at com.sun.javafx.application.PlatformImpl.lambda$null$170(Unknown Source)
    at com.sun.javafx.application.PlatformImpl$$Lambda$48/27167109.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$171(Unknown Source)
    at com.sun.javafx.application.PlatformImpl$$Lambda$47/2180324.run(Unknown Source)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(Unknown Source)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null$145(Unknown Source)
    at com.sun.glass.ui.win.WinApplication$$Lambda$36/3326003.run(Unknown Source)
    ... 1 more
Exception running application clock.Boot

正如我所说的,Exception只发生在一些运行中而不是总是如此。它主要发生在我更改detailLevel = 4的格式模式时,但在再次更改之后仍然是另一次运行。我猜这可能实际上与Eclipse有关但我无法调试代码,因为在stage.show调用中抛出了异常,这是我绝对不明白的。这个随机异常的原因是什么?如何解决?

1 个答案:

答案 0 :(得分:1)

在JavaFX中,与大多数其他GUI工具包一样,有一个特定的线程可以处理所有与UI相关的操作。应用程序不得更新此线程之外的UI。如果需要从另一个线程更新UI,通常有可用的API可确保代码在UI线程的上下文中执行。如果是JavaFX,请参阅Concurrency in JavaFX Tutorial以获取更多信息。

在您的情况下,最简单的解决方案是确保在JavaFX应用程序线程上执行setText()调用,而不是在与Task相关联的线程上执行:

...
Platform.runLater(() -> setText(nowTextual));
...

JavaFX中还有其他API可用于制作动画,可用于在特定时间间隔调用处理程序方法 - 这将从循环中删除Thread.sleep()调用。有关详细信息,请参阅Timeline

相关问题