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.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

JFilechooser setFileHidingEnabled()

chooser.setFileHidingEnabled(false);

How to Use File Chooser

link|improve this answer
Thank you, it works. – abb Jul 27 '11 at 17:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.