JAvafxノート----非javafxスレッドPlatform.runLater賦課が有効でない場合

1196 ワード

                            Platform.runLater(() -> {
                                  //        
                                 });

Platform.runLaterは、fxページに値を付けていない場合があります.
task方式を採用
           Task task = new Task() {
               @Override 
               public SB call() throws Exception {
                  
                   return new SB(xxx);
                   
               }
           };
           task.valueProperty().addListener((obs, oldMessage, a) -> 
// fx 
);
           new Thread(task).start();