Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 NetBeans 构建文件夹浏览器应用程序。在应用程序流程中,我放置了一个文件浏览器控件来浏览文件和文件夹。
我的问题:文件浏览器控件总是列出文件夹和文件。
我的问题:如何将文件浏览器控件设置为仅列出文件夹?
当您正在寻找要浏览的新文件和文件夹列表时,您可以过滤并仅添加文件夹:
while (enum1.hasMoreElements()) { current = (String) enum1.nextElement(); if (current.endsWith("\") || current.endsWith("/")) { folders.addElement(current); } } }