スレッド内でボタンに対しsetText()を行うとエラーが発生します。
(エラー内容等はソースコード内に記述)
ただし以下の場合はボタンのテキストを正常に変更が可能でした。
@FXML
protected void aButtonClicked(ActionEvent event) {
aButton.setText("Changed");
}
JavaFXのコントローラーに対する根本的な理解がない事は承知していまして色々調べましたが分かりませんでした。
すいませんが教えて頂けますと幸いです。よろしくお願い致します。
Form.fxml
xml
1<?xml version="1.0" encoding="UTF-8"?> 2 3<?import javafx.scene.control.Button?> 4<?import javafx.scene.layout.AnchorPane?> 5 6<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="xy.Entry"> 7 <children> 8 <Button fx:id="aButton" layoutX="14.0" layoutY="18.0" mnemonicParsing="false" onAction="#aButtonClicked" prefHeight="31.0" prefWidth="81.0" text="---" /> 9 </children> 10</AnchorPane>
Entry.java
Java
1package xy; 2 3import javafx.application.Platform; 4import javafx.fxml.FXML; 5import javafx.fxml.FXMLLoader; 6import javafx.application.Application; 7import javafx.concurrent.ScheduledService; 8import javafx.concurrent.Task; 9import javafx.scene.Node; 10import javafx.scene.Parent; 11import javafx.scene.Scene; 12import javafx.scene.control.Button; 13import javafx.scene.layout.HBox; 14import javafx.scene.layout.VBox; 15import javafx.stage.Stage; 16import javafx.event.ActionEvent; 17 18import java.util.concurrent.TimeUnit; 19 20public class Entry extends Application { 21 // 参照先 22 @FXML public Button aButton; 23 24 // メインウィンドウの描画 25 @Override 26 public void start(Stage primaryStage) throws Exception { 27 try { 28 Parent parent = FXMLLoader.load(getClass().getResource("Form.fxml")); 29 30 VBox root = new VBox(); 31 Node taskMainNode = createMainService(); // スレッドの作成 32 root.getChildren().addAll(parent, taskMainNode); // fxml & thread を add 33 34 primaryStage.setScene(new Scene(root, 600, 400)); 35 primaryStage.show(); 36 } catch (Exception e) { 37 e.printStackTrace(); 38 } 39 } 40 41 // メイン処理(スレッド) 42 public Node createMainService() { 43 HBox root = new HBox(); 44 45 ScheduledService<Boolean> tradingOperation = new ScheduledService<Boolean>() { 46 @Override 47 protected Task<Boolean> createTask() { 48 Task<Boolean> task = new Task<Boolean>() { 49 50 @Override 51 protected Boolean call() throws Exception { 52 // 通常モード 53 // 描画したボタンのテキストを Hello に変更 54 // しかし反応なし 55 aButton.setText("Changed"); 56 57 // Platform.RunLaterモード 58 // 描画したボタンのテキストを Hello に変更 59 // 次のエラーが発生 Exception in thread "JavaFX Application Thread" java.lang.NullPointerException 60 Platform.runLater( 61 ()-> aButton.setText("Changed") 62 ); 63 64 Thread.sleep( 3000 ); 65 return null; 66 } 67 }; 68 return task; 69 } 70 }; 71 72 tradingOperation.start(); 73 74 return root; 75 } 76 77 @FXML 78 protected void aButtonClicked(ActionEvent event) { 79 80 } 81 82 /* 83 スレッドの待機 84 */ 85 private void threadSleep(int intTime) { 86 try { 87 Thread.sleep(intTime); 88 } catch (InterruptedException e) { 89 } 90 } 91 92 public static void main(String[] args) { 93 launch(args); 94 } 95}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/08/21 17:08