Обновление метки состояния JavaFX - PullRequest
1 голос
/ 27 мая 2020

У меня есть программа JavaFX, использующая модель / представление / контроллер, где я хочу, чтобы долго работающая модель обновляла метку состояния в представлении. Я нашел людей, предлагающих использовать для этого класс Timeline . Я реализовал это, ожидая, что каждую секунду метка статуса будет обновляться. Однако отображается только окончательный статус. Что я делаю не так?

Мой контроллер выглядит так:

@FXML
private Button pullApplicantsButton;
@FXML
private Label statusLabel;
@FXML
private DatePicker orientationDate;
@FXML
private Spinner numberOfApplicants;

@FXML
private void pullApplicants() throws Exception {

    SelectApplicantsModel selectApplicantsModel = new SelectApplicantsModel(orientationDate.getValue() , ( int ) numberOfApplicants.getValue() , this.statusLabel);
    selectApplicantsModel.process();
}

моя модель выглядит так:

public SelectApplicantsModel(LocalDate nextOrientationDate, int numberOfApplicants , Label statusLabel ) throws FileNotFoundException {

    this.nextOrientationDate = nextOrientationDate;
    this.numberOfApplicants = numberOfApplicants;
    this.statusLabel = statusLabel;
}

public void process() throws Exception {

    Timeline timeline = new Timeline(
            new KeyFrame(Duration.seconds( 1 ) , event -> {
                statusLabel.setText( programStatus );
            })
    );
    timeline.setCycleCount( Animation.INDEFINITE );
    timeline.play();
    programStatus = "starting";
    changeSearchStringToIncludeOrientationDate(nextOrientationDate);
    MemberClicks memberClicks = new MemberClicks();
    programStatus = "retrieving profiles";
    JsonArray applicantProfilesJsonArray = memberClicks.getProfiles(searchJsonArray);
    programStatus = "converting profiles";

, а вид выглядит так:

  <Label text="Picks the next 30 applicants for the upcoming orientation.  Applicants whose Memberclick's OrientationDate matches the next orientation date get priority, followed by those with the oldest normalized application date." wrapText="true" GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="0" />
  <Label text="Date of next orientation:" GridPane.columnIndex="0" GridPane.rowIndex="1" />
  <DatePicker fx:id="orientationDate" editable="false" GridPane.columnIndex="1" GridPane.rowIndex="1" />
  <Label text="Number of applicants to pull:" GridPane.columnIndex="0" GridPane.rowIndex="2" />
  <Spinner fx:id="numberOfApplicants" editable="false" GridPane.columnIndex="1" GridPane.rowIndex="2" />
  <Button fx:id="pullApplicantsButton" mnemonicParsing="false" onAction="#pullApplicants" text="Pull Applicants" GridPane.columnIndex="0" GridPane.rowIndex="4" />
  <Button fx:id="closeWindowButton" mnemonicParsing="false" onAction="#closeWindow" text="Close Window" GridPane.columnIndex="1" GridPane.rowIndex="4" />
  <Label fx:id="statusLabel" text="" wrapText="true" GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="5" />

1 Ответ

2 голосов
/ 27 мая 2020

Вы можете использовать Task для своих целей, который выполняет всю работу в фоновом потоке, чтобы поток GUI не был заблокирован. Вот минимальный пример:

Класс контроллера:

package sample;

import javafx.fxml.FXML;
import javafx.scene.control.Label;

public class Controller {

    @FXML
    private Label statusLabel;

    @FXML
    public void handleStartBtnClick() {
        MyTask myTask = new MyTask();
        statusLabel.textProperty().bind(myTask.messageProperty());
        new Thread(myTask).start();
    }
}

Класс MyTask:

package sample;

import javafx.concurrent.Task;

public class MyTask extends Task<Void> {

    @Override
    protected Void call() throws Exception {

        updateMessage("starting");

        // while (...) {
        // do something:
        // changeSearchStringToIncludeOrientationDate(nextOrientationDate);
        // MemberClicks memberClicks = new MemberClicks();

        Thread.sleep(1000); // just for demonstration purpose

        // Update the status:
        updateMessage("retrieving profiles");

        Thread.sleep(1000);

        // Do next step:
        // ...
        updateMessage("converting profiles");
        Thread.sleep(1000);

        // } End of while loop

        return null;
    }

    @Override
    protected void succeeded() {
        updateMessage("succeeded");
    }
}

F XML Файл:

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.VBox?>


<VBox xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
    <children>
        <Button onAction="#handleStartBtnClick" text="Start background task"/>
        <Label fx:id="statusLabel" text="Status"/>
    </children>
</VBox>
...