I want to show a message when the user does not enter a file name on the file chooser text box.
Please let me know if there is a way to accomplish this. My code is below:
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Save as");
FileChooser.ExtensionFilter extFilter = new FileChooser.ExtensionFilter(
"PDF files (*.pdf)", "*.pdf");
fileChooser.getExtensionFilters().add(extFilter);
File destinationFile = fileChooser.showSaveDialog(primaryStage);
This was an issue till java 1.7.0_25(not sure of the exact release) but has been fixed in the release 1.7.0_40.
Also, please see this.