By default JFileChooser
does not display files with names starting with at dot. How to make it display all files?
Here is what I have tried (did not help):
JFileChooser chooser = new JFileChooser();
chooser.setFileFilter(new FileFilter() {
@Override
public boolean accept(File f) {
return true;
}
@Override
public String getDescription() {
return "All Files";
}
});
Thanks.