I use FileNameExtensionFilter to filter the file type, but when the user selects the open button, they have the option to select "All files" from the file type. is there any way to disable this option?
FileFilter filter = new FileNameExtensionFilter("JPEG file", "jpg", "jpeg"); JFileChooser fileChooser = ...; fileChooser.addChoosableFileFilter(filter);
so something to add to the above code that prevents the user from selecting any other file?
source share