Threads in JavaFX: Not on FX application thread












1















I want study how to work with Threads in JavaFX. For example, 2 processes, which should change text on the lables every 100 ms, and updating information on the screen also every 100 ms.



But in this case it doesnt works. IDEA writes:




Exception in thread "Thread-4" java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4




I have read many examples with the same problem, but any of their solutions doesnt worked.



What I should to do?



Thanks.



sample.fxml



...
<Button fx:id="startBut" layoutX="100.0" layoutY="50.0" mnemonicParsing="false" onAction="#testingOfThread" prefHeight="25.0" prefWidth="65.0" text="Export" />
<Label fx:id="firstStatus" layoutX="100.0" layoutY="100" text="Status" />
<Label fx:id="secondStatus" layoutX="100.0" layoutY="150" text="Status" />
...


Main.java



package sample;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Sample");
primaryStage.setScene(new Scene(root));
primaryStage.show();
}

//Take control to Controller
public void initializeController(){
FXMLLoader loader = new FXMLLoader();
Controller controller = loader.getController();
controller.setMain(this);
}

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


Controller.java



package sample;

import javafx.concurrent.Task;
import javafx.fxml.FXML;
import javafx.scene.control.*;

public class Controller {

@FXML
private Label firstStatus;

@FXML
private Label secondStatus;

@FXML
public Button startBut;


//Link to MainApp
private Main Main;

//Constructor
public Controller(){
}


//Link for himself
public void setMain(Main main){
this.Main = main;
}

@FXML
private void testingOfThread(){

Task<Void> task = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
firstStatus.setText(i+"");
}
return null;
}
};

Thread th = new Thread(task);
th.setDaemon(true);
th.start();


Task<Void> task2 = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
secondStatus.setText(i+"");
}
return null;
}
};

Thread th2 = new Thread(task2);
th2.start();

}
}









share|improve this question


















  • 3





    Don't update the GUI from a thread other than the application thread. You need to use Platform.runLater. Alternatively since you're already using tasks, update the message properties instead of the text property by using updateMessage and bind the text properties to the message properties: call method: /* firstStatus.setText(i+"");*/ updateMessage(Integer.toString(i)); before starting the thread: firstStatus.textProperty().bind(task.messageProperty());

    – fabian
    Mar 18 '18 at 1:47













  • Danke schön, Fabian! All works.

    – Kamil Timraleev
    Mar 18 '18 at 10:27
















1















I want study how to work with Threads in JavaFX. For example, 2 processes, which should change text on the lables every 100 ms, and updating information on the screen also every 100 ms.



But in this case it doesnt works. IDEA writes:




Exception in thread "Thread-4" java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4




I have read many examples with the same problem, but any of their solutions doesnt worked.



What I should to do?



Thanks.



sample.fxml



...
<Button fx:id="startBut" layoutX="100.0" layoutY="50.0" mnemonicParsing="false" onAction="#testingOfThread" prefHeight="25.0" prefWidth="65.0" text="Export" />
<Label fx:id="firstStatus" layoutX="100.0" layoutY="100" text="Status" />
<Label fx:id="secondStatus" layoutX="100.0" layoutY="150" text="Status" />
...


Main.java



package sample;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Sample");
primaryStage.setScene(new Scene(root));
primaryStage.show();
}

//Take control to Controller
public void initializeController(){
FXMLLoader loader = new FXMLLoader();
Controller controller = loader.getController();
controller.setMain(this);
}

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


Controller.java



package sample;

import javafx.concurrent.Task;
import javafx.fxml.FXML;
import javafx.scene.control.*;

public class Controller {

@FXML
private Label firstStatus;

@FXML
private Label secondStatus;

@FXML
public Button startBut;


//Link to MainApp
private Main Main;

//Constructor
public Controller(){
}


//Link for himself
public void setMain(Main main){
this.Main = main;
}

@FXML
private void testingOfThread(){

Task<Void> task = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
firstStatus.setText(i+"");
}
return null;
}
};

Thread th = new Thread(task);
th.setDaemon(true);
th.start();


Task<Void> task2 = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
secondStatus.setText(i+"");
}
return null;
}
};

Thread th2 = new Thread(task2);
th2.start();

}
}









share|improve this question


















  • 3





    Don't update the GUI from a thread other than the application thread. You need to use Platform.runLater. Alternatively since you're already using tasks, update the message properties instead of the text property by using updateMessage and bind the text properties to the message properties: call method: /* firstStatus.setText(i+"");*/ updateMessage(Integer.toString(i)); before starting the thread: firstStatus.textProperty().bind(task.messageProperty());

    – fabian
    Mar 18 '18 at 1:47













  • Danke schön, Fabian! All works.

    – Kamil Timraleev
    Mar 18 '18 at 10:27














1












1








1


1






I want study how to work with Threads in JavaFX. For example, 2 processes, which should change text on the lables every 100 ms, and updating information on the screen also every 100 ms.



But in this case it doesnt works. IDEA writes:




Exception in thread "Thread-4" java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4




I have read many examples with the same problem, but any of their solutions doesnt worked.



What I should to do?



Thanks.



sample.fxml



...
<Button fx:id="startBut" layoutX="100.0" layoutY="50.0" mnemonicParsing="false" onAction="#testingOfThread" prefHeight="25.0" prefWidth="65.0" text="Export" />
<Label fx:id="firstStatus" layoutX="100.0" layoutY="100" text="Status" />
<Label fx:id="secondStatus" layoutX="100.0" layoutY="150" text="Status" />
...


Main.java



package sample;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Sample");
primaryStage.setScene(new Scene(root));
primaryStage.show();
}

//Take control to Controller
public void initializeController(){
FXMLLoader loader = new FXMLLoader();
Controller controller = loader.getController();
controller.setMain(this);
}

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


Controller.java



package sample;

import javafx.concurrent.Task;
import javafx.fxml.FXML;
import javafx.scene.control.*;

public class Controller {

@FXML
private Label firstStatus;

@FXML
private Label secondStatus;

@FXML
public Button startBut;


//Link to MainApp
private Main Main;

//Constructor
public Controller(){
}


//Link for himself
public void setMain(Main main){
this.Main = main;
}

@FXML
private void testingOfThread(){

Task<Void> task = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
firstStatus.setText(i+"");
}
return null;
}
};

Thread th = new Thread(task);
th.setDaemon(true);
th.start();


Task<Void> task2 = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
secondStatus.setText(i+"");
}
return null;
}
};

Thread th2 = new Thread(task2);
th2.start();

}
}









share|improve this question














I want study how to work with Threads in JavaFX. For example, 2 processes, which should change text on the lables every 100 ms, and updating information on the screen also every 100 ms.



But in this case it doesnt works. IDEA writes:




Exception in thread "Thread-4" java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4




I have read many examples with the same problem, but any of their solutions doesnt worked.



What I should to do?



Thanks.



sample.fxml



...
<Button fx:id="startBut" layoutX="100.0" layoutY="50.0" mnemonicParsing="false" onAction="#testingOfThread" prefHeight="25.0" prefWidth="65.0" text="Export" />
<Label fx:id="firstStatus" layoutX="100.0" layoutY="100" text="Status" />
<Label fx:id="secondStatus" layoutX="100.0" layoutY="150" text="Status" />
...


Main.java



package sample;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Sample");
primaryStage.setScene(new Scene(root));
primaryStage.show();
}

//Take control to Controller
public void initializeController(){
FXMLLoader loader = new FXMLLoader();
Controller controller = loader.getController();
controller.setMain(this);
}

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


Controller.java



package sample;

import javafx.concurrent.Task;
import javafx.fxml.FXML;
import javafx.scene.control.*;

public class Controller {

@FXML
private Label firstStatus;

@FXML
private Label secondStatus;

@FXML
public Button startBut;


//Link to MainApp
private Main Main;

//Constructor
public Controller(){
}


//Link for himself
public void setMain(Main main){
this.Main = main;
}

@FXML
private void testingOfThread(){

Task<Void> task = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
firstStatus.setText(i+"");
}
return null;
}
};

Thread th = new Thread(task);
th.setDaemon(true);
th.start();


Task<Void> task2 = new Task<Void>() {
@Override public Void call() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
Thread.interrupted();
break;
}
System.out.println(i + 1);
secondStatus.setText(i+"");
}
return null;
}
};

Thread th2 = new Thread(task2);
th2.start();

}
}






multithreading javafx






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 18 '18 at 0:16









Kamil TimraleevKamil Timraleev

203




203








  • 3





    Don't update the GUI from a thread other than the application thread. You need to use Platform.runLater. Alternatively since you're already using tasks, update the message properties instead of the text property by using updateMessage and bind the text properties to the message properties: call method: /* firstStatus.setText(i+"");*/ updateMessage(Integer.toString(i)); before starting the thread: firstStatus.textProperty().bind(task.messageProperty());

    – fabian
    Mar 18 '18 at 1:47













  • Danke schön, Fabian! All works.

    – Kamil Timraleev
    Mar 18 '18 at 10:27














  • 3





    Don't update the GUI from a thread other than the application thread. You need to use Platform.runLater. Alternatively since you're already using tasks, update the message properties instead of the text property by using updateMessage and bind the text properties to the message properties: call method: /* firstStatus.setText(i+"");*/ updateMessage(Integer.toString(i)); before starting the thread: firstStatus.textProperty().bind(task.messageProperty());

    – fabian
    Mar 18 '18 at 1:47













  • Danke schön, Fabian! All works.

    – Kamil Timraleev
    Mar 18 '18 at 10:27








3




3





Don't update the GUI from a thread other than the application thread. You need to use Platform.runLater. Alternatively since you're already using tasks, update the message properties instead of the text property by using updateMessage and bind the text properties to the message properties: call method: /* firstStatus.setText(i+"");*/ updateMessage(Integer.toString(i)); before starting the thread: firstStatus.textProperty().bind(task.messageProperty());

– fabian
Mar 18 '18 at 1:47







Don't update the GUI from a thread other than the application thread. You need to use Platform.runLater. Alternatively since you're already using tasks, update the message properties instead of the text property by using updateMessage and bind the text properties to the message properties: call method: /* firstStatus.setText(i+"");*/ updateMessage(Integer.toString(i)); before starting the thread: firstStatus.textProperty().bind(task.messageProperty());

– fabian
Mar 18 '18 at 1:47















Danke schön, Fabian! All works.

– Kamil Timraleev
Mar 18 '18 at 10:27





Danke schön, Fabian! All works.

– Kamil Timraleev
Mar 18 '18 at 10:27












1 Answer
1






active

oldest

votes


















1














Find the code which update the GUI from a thread other than the application thread,then put them in runLater().



Platform.runLater(new Runnable() {
@Override
public void run() {
//update application thread
}
});





share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f49343256%2fthreads-in-javafx-not-on-fx-application-thread%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Find the code which update the GUI from a thread other than the application thread,then put them in runLater().



    Platform.runLater(new Runnable() {
    @Override
    public void run() {
    //update application thread
    }
    });





    share|improve this answer




























      1














      Find the code which update the GUI from a thread other than the application thread,then put them in runLater().



      Platform.runLater(new Runnable() {
      @Override
      public void run() {
      //update application thread
      }
      });





      share|improve this answer


























        1












        1








        1







        Find the code which update the GUI from a thread other than the application thread,then put them in runLater().



        Platform.runLater(new Runnable() {
        @Override
        public void run() {
        //update application thread
        }
        });





        share|improve this answer













        Find the code which update the GUI from a thread other than the application thread,then put them in runLater().



        Platform.runLater(new Runnable() {
        @Override
        public void run() {
        //update application thread
        }
        });






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 21 '18 at 6:47









        Fly KingFly King

        112




        112






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f49343256%2fthreads-in-javafx-not-on-fx-application-thread%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter