NetBeans J2ME FileBrowser 仅浏览文件夹?

发布于 2024-12-11 06:44:47 字数 133 浏览 0 评论 0原文

我正在使用 NetBeans 构建文件夹浏览器应用程序。在应用程序流程中,我放置了一个文件浏览器控件来浏览文件和文件夹。

我的问题:文件浏览器控件始终列出文件夹和文件。

我的问题:如何将文件浏览器控件设置为仅列出文件夹?

I'm using NetBeans to build a folder browser application. In application flow, i place a file browser control to browse files and folders.

My problem: The file browser control always list both folders and files.

My question: How can i set the file browser control to list only folders?

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

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

发布评论

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

评论(1

天煞孤星 2024-12-18 06:44:47

当您正在寻找要浏览的新文件和文件夹列表时,您可以过滤并仅添加文件夹:

while (enum1.hasMoreElements()) {
                    current = (String) enum1.nextElement();
                    if (current.endsWith("\") || current.endsWith("/")) {
                        folders.addElement(current);
                    }


         }
 }

When you are looking for new list of files&folders to browse you can filter and only add folders:

while (enum1.hasMoreElements()) {
                    current = (String) enum1.nextElement();
                    if (current.endsWith("\") || current.endsWith("/")) {
                        folders.addElement(current);
                    }


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