我想更新一个用FXML文件创建的屏幕。
我虽然这样:Link是解决方案,但我没有得到运行的代码。我找到了其他一些代码,但没有人为我工作。如果我使用不同的版本(见Link)或者我只是一个偶像,我不是不舒服......但我们会看到......
我做了一个非常简单的示例来展示我的问题,所以希望有人可以告诉我这个简单的例子它是如何工作的。
JavaFXApplication.java
package javafxapplication;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class JavaFXApplication extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
FXMLDocumentController.java
package javafxapplication;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;
public class FXMLDocumentController implements Initializable {
@FXML
private Label label;
@Override
public void initialize(URL url, ResourceBundle rb) {
label.setText("This Label was initialized.");
}
public void update(){
label.setText("This Label was updated :)"); //Just4Example... normaly here is some SQL-Stuff...
}
}
FXMLDocument.fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml" fx:controller="javafxapplication.FXMLDocumentController">
<children>
<Label layoutX="100" layoutY="100" minHeight="16" minWidth="69" fx:id="label" />
</children>
</AnchorPane>
我想每隔5秒在控制器中启动&#34;更新&#34; -Methode。但是,当我使用Timer执行此操作时......控制器已消失。因此,当Timer启动Methode时,没有@FXML连接...也许控制器应该手动创建...或者第二个linke ...但是我没有得到运行的代码......困惑......沮丧。 ..
非常感谢
答案 0 :(得分:2)
试试这个
@Override
public void initialize(URL url, ResourceBundle rb) {
label.setText("This Label was initialized.");
Timeline timeline = new Timeline(
new KeyFrame(Duration.seconds(2),
new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
// Call update method for every 2 sec.
update();
}
}));
timeline.setCycleCount(Animation.INDEFINITE);
timeline.play();
}
但是在SQL查询任务中使用时间轴会阻止UI JavaFX线程,导致屏幕在查询时冻结。因此,请改用ScheduledService(在JavaFX 8中引入)。