Java FileSystemView隐藏文件夹

发布于 2025-01-03 17:32:50 字数 137 浏览 1 评论 0原文

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

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不乱于心 2025-01-10 17:32:50

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

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

冷情妓 2025-01-10 17:32:50

检查 setFileHidingEnabled 方法JFileChooser 的。

这个方法

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

fileChooser.setFileHidingEnabled(false);

Check setFileHidingEnabled method of JFileChooser.

This method

Sets file hiding on or off. If true, hidden files are not shown in the
file chooser. The job of determining which files are shown is done by
the FileView.

fileChooser.setFileHidingEnabled(false);
凉城已无爱 2025-01-10 17:32:50

在 Swing 中隐藏文件 JFileChooser

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

Hiding files in Swing JFileChooser:

JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileHidingEnabled(false);
fileChooser.showOpenDialog(null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文