Java FileSystemView隐藏文件夹

时间:2012-02-09 17:58:27

标签: java swing applet japplet

我有一个用于上传文件的小程序,当浏览文件时,它显示所有文件夹通常就像正常一样,除了它没有显示隐藏文件夹。我的问题是,是否可以在文件浏览器中显示隐藏文件夹?

我正在使用java 1.6和javax.swing.filechooser

3 个答案:

答案 0 :(得分:3)

Swing Hiding files中的

JFileChooser

JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileHidingEnabled(false);
fileChooser.showOpenDialog(null);

答案 1 :(得分:3)

将JFileChooser的方法setFileHidingEnabled()设置为false可以显示隐藏文件。 见:http://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html

答案 2 :(得分:3)

检查JFileChooser的setFileHidingEnabled方法。

此方法

  

设置文件隐藏开启或关闭。如果为true,则隐藏文件不会显示在   文件选择器。确定显示哪些文件的工作是由   FileView。

fileChooser.setFileHidingEnabled(false);