/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dirchooser; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.layout.StackPane; import javafx.stage.DirectoryChooser; import javafx.stage.Stage; /** * * @author Sven */ public class DirChooser extends Application { /** * @param args the command line arguments */ public static void main(String[] args) { launch(args); } @Override public void start(final Stage primaryStage) { primaryStage.setTitle("Directory Chooser Issue!"); Button btn = new Button(); btn.setText("Open Directory Chooser"); btn.setOnAction(new EventHandler() { @Override public void handle(ActionEvent event) { DirectoryChooser dirChooser = new DirectoryChooser(); dirChooser.setTitle("Select a directory"); dirChooser.showDialog(primaryStage); } }); StackPane root = new StackPane(); root.getChildren().add(btn); primaryStage.setScene(new Scene(root, 300, 250)); primaryStage.show(); } }