filechooser java code example
Example 1: javafx filechooser specific file
FileChooser fc = new FileChooser();
FileChooser.ExtensionFilter fileExtensions =
new FileChooser.ExtensionFilter(
"Web pages", "*.tpl", "*.html", "*.htm");
fc.getExtensionFilters().add(fileExtensions);
Example 2: File file = fc.showOpenDialog
File file = fc.showOpenDialog