sql >> Databáze >  >> RDS >> Oracle

Okamžitá aktualizace JavaFX TextArea

Spusťte executeCmds() metodu ve vláknu na pozadí a aktualizujte textovou oblast pomocí Platform.runLater() :

public void executeCmds(){
    Thread thread = new Thread(() -> {
        createTempDirectory();
        copyConfigPropetiesFileValues();
        copyConfigProperties();
        copyYMLFile();
        copyYMLFileProperties();

        stopTomcatServer();

        deleteOldWar();
        copyNewWar();
        startTomcatServer();

        copyOldConfigFile();
        copyOldYMLFile();
    });
    thread.start();
}

a poté

public void createTempDirectory(){
         //Creating temporary directory for copying property files
    updateStatus("Trying to create a temp directory \n");
    File tempDir= new File(tomcat_path.getText()+filePath.path_to_temp_directory);
    if(!tempDir.exists())
        tempDir.mkdirs();

    updateStatus("Created Temp directory to copy Config Files \n");
}

// similarly for other methods

private void updateStatus(String message) {
    if (Platform.isFxApplicationThread()) {
        status_text_area.appendText(message);
    } else {
        Platform.runLater(() -> status_text_area.appendText(message));
    }
}


  1. Jak znovu vytvořit zobrazení v SQL Server 2008

  2. Mysql index na zobrazení nefunguje

  3. MYSQL zobrazuje 0, i když výsledky neexistují

  4. Zcela odebrat MySQL Ubuntu 14.04 LTS