需要在JavaFX中现场更新时间

时间:2016-12-18 16:01:53

标签: java

我正在研究Java中的时钟程序,我不确定如何让时间更新。我尝试使用thread.sleep(1000);的for循环,但这不起作用。此外,如果有人知道如何阻止Stage打开白色然后在变黑之前有一点延迟,那将非常感激。

这是我的代码:

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import javafx.scene.paint.Color;
import javafx.scene.layout.HBox;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
import java.text.DateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;

    public class Clock extends Application {

         @Override public void start(Stage stage) {

            DateFormat df = new SimpleDateFormat("EEE,MMM d yyyy - h:mm:ss a");
            Date date = new Date();
            String stringDate = df.format(date);

            Text text = new Text(10, 60, stringDate);
            text.setFont(Font.font ("Digital Dream Fat", 30f));
            text.setFill(Color.RED);

            HBox hbox = new HBox();

            Scene scene = new Scene(new Group(text));
            scene.setFill(Color.BLACK);

            stage.setScene(scene);
            stage.initStyle(StageStyle.UNDECORATED);
            stage.setWidth(710);
            stage.setHeight(80);
            stage.show(); 
        }

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

2 个答案:

答案 0 :(得分:0)

你必须设置一个TimerTask并在一个单独的thead中运行它。

https://docs.oracle.com/javase/7/docs/api/java/util/TimerTask.html

TimerTask can't update the JavaFX Label text

答案 1 :(得分:0)

首先,你必须记住UI的组件不是线程安全的,因此对ui的任何更新操作必须在ui的线程本身内完成,而不是从后台线程完成,否则它们将阻止UI的线程。

要更新它,您可以使用线程安全机制,其中一个是Timeline类。现在让我们在您的代码中实现它。

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import javafx.scene.paint.Color;
import javafx.scene.layout.HBox;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
import java.text.DateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import javafx.animation.Animation;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.util.Duration;

    public class Clock extends Application {

         @Override public void start(Stage stage) {

            DateFormat df = new SimpleDateFormat("EEE,MMM d yyyy - h:mm:ss a");
            Date date = new Date();
            String stringDate = df.format(date);

            Text text = new Text(10, 60, stringDate);
            text.setFont(Font.font ("Digital Dream Fat", 30f));
            text.setFill(Color.RED);

            HBox hbox = new HBox();


            Timeline timeline = new Timeline(new KeyFrame(Duration.seconds(0),
        new EventHandler<ActionEvent>() {

            @Override
            public void handle(ActionEvent actionEvent) {
              Date update = new Date();
            String stringNewDate = df.format(update);
                    text.setText(stringNewDate);
            }
        }

        ), new KeyFrame(Duration.seconds(1)));
              timeline.setCycleCount(Animation.INDEFINITE);
        timeline.play(); // timeline.stop()

            Scene scene = new Scene(new Group(text));
            scene.setFill(Color.BLACK);

            stage.setScene(scene);
            stage.initStyle(StageStyle.UNDECORATED);
            stage.setWidth(710);
            stage.setHeight(80);
            stage.show(); 
        }

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

睡眠/暂停部分在此行上受到控制.. new KeyFrame(Duration.seconds(1))) 所以每分钟都会 Duration.minutes(1) ,以阻止它时间线的实例然后执行 timeline.stop()