現在、JavaFxを使用して、シーンの上隅に現在の日付と時刻を表示する追加機能を備えたアプリケーションを構築しています。私はJavaFXを初めて使用するので、これを実装する方法がわかりません。
Swingで古いコードを使用しようとしましたが、IllegalStateExceptionエラーが発生しました。
これが私のコードです。
MainMenuController.Java
@FXML private Label time;
private int minute;
private int hour;
private int second;
@FXML
public void initialize() {
Thread clock = new Thread() {
public void run() {
for (;;) {
DateFormat dateFormat = new SimpleDateFormat("hh:mm a");
Calendar cal = Calendar.getInstance();
second = cal.get(Calendar.SECOND);
minute = cal.get(Calendar.MINUTE);
hour = cal.get(Calendar.HOUR);
//System.out.println(hour + ":" + (minute) + ":" + second);
time.setText(hour + ":" + (minute) + ":" + second);
try {
sleep(1000);
} catch (InterruptedException ex) {
//...
}
}
}
};
clock.start();
}
MainMenu.fxml
<children>
<Label fx:id="time" textFill="WHITE">
<font>
<Font name="Segoe UI Black" size="27.0" />
</font>
</Label>
<Label fx:id="date" textFill="WHITE">
<font>
<Font name="Segoe UI Semibold" size="19.0" />
</font>
</Label>
</children>
Main.Java
public class Main extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("view/MainMenu.fxml"));
primaryStage.setScene(new Scene(root,1366, 768));
primaryStage.show();
}
}
お気づきのように、コンソールでライブ時間を出力してテストしました。うまくいきましたが、ラベルはまだ静的です。
そのためにはFX UIスレッドPlatform.runLater(...)
が必要だと思いますが、コントローラクラスで Timeline
を使用してこのようなことを行うことができます。
@FXML
public void initialize() {
Timeline clock = new Timeline(new KeyFrame(Duration.ZERO, e -> {
LocalTime currentTime = LocalTime.now();
time.setText(currentTime.getHour() + ":" + currentTime.getMinute() + ":" + currentTime.getSecond());
}),
new KeyFrame(Duration.seconds(1))
);
clock.setCycleCount(Animation.INDEFINITE);
clock.play();
}
@Shekhar Raiの回答はうまくいきますが、こちらもかなりうまくいく短いバージョンです。
@FXML
Label dateTime;
@Override
public void initialize(URL location, ResourceBundle resources) {
initClock();
}
private void initClock() {
Timeline clock = new Timeline(new KeyFrame(Duration.ZERO, e -> {
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
dateTime.setText(LocalDateTime.now().format(formatter));
}), new KeyFrame(Duration.seconds(1)));
clock.setCycleCount(Animation.INDEFINITE);
clock.play();
}
主な利点は、すべての変数(秒、分など)を定義する必要がないことです。