Search code examples
javaswingappletjapplet

Java FileSystemView Hidden Folder


I have an applet for uploading file, and when browse file, it showed all folder normally just like normal except it does not show hidden folder. My question is, is it possible to show hidden folder also in the file browser?

I am using java 1.6 and javax.swing.filechooser


Solution

  • Setting false to the method setFileHidingEnabled() of JFileChooser lets hidden files be shown. see : http://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html