修改 JFileChooser 以仅显示文件夹内容

发布于 2025-01-06 15:29:53 字数 103 浏览 0 评论 0原文

我正在尝试开发一个 GUI 应用程序,它在左侧显示文件系统树,在右侧显示选定的树节点(文件夹)的内容。 任何人都可以告诉我在 jfilechooser 中进行修改以仅显示文件夹内容 先感谢您

i m trying to develop an gui application which display tree of filesystem on left side and on right side it display selected tree nodes (folder)'s content .
can any body tell me to do modification in jfilechooser to just to display folder content
thank you in advance

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

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

发布评论

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

评论(3

终陌 2025-01-13 15:29:53

JFileChooser#accept 允许您过滤显示哪些文件。类似的方法是 JFileChooser#setFileFilter 方法

The JFileChooser#accept allows you to filter which files are displayed. A similar method is the JFileChooser#setFileFilter method

枯寂 2025-01-13 15:29:53

请参阅:示例

JFileChooser fileChooser = new JFileChooser();

fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);

See: example

JFileChooser fileChooser = new JFileChooser();

fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
蓦然回首 2025-01-13 15:29:53

也许这就是您所期望的:-

JFileChooser chooser = new JFileChooser();
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);

try {
   // Create a File object containing the canonical path of the desired directory
   File f = new File(new File(".").getCanonicalPath());

   // Set the current directory
   chooser.setCurrentDirectory(f);
} catch (IOException e1) {
   e1.printStackTrace();
}

// Show the dialog; wait until dialog is closed
int returnVal = chooser.showOpenDialog(frame);

if(returnVal == JFileChooser.APPROVE_OPTION)
{
    File f = chooser.getSelectedFile();
    textField.setText(f.getAbsolutePath());

    File[] contents = f.listFiles();
    for(int file=0;file<contents.length;file++)
    {
        System.out.println(contents[file].getName()); //here you get the contents of the selected directory
    }
}

Perhaps this is what you expected:-

JFileChooser chooser = new JFileChooser();
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);

try {
   // Create a File object containing the canonical path of the desired directory
   File f = new File(new File(".").getCanonicalPath());

   // Set the current directory
   chooser.setCurrentDirectory(f);
} catch (IOException e1) {
   e1.printStackTrace();
}

// Show the dialog; wait until dialog is closed
int returnVal = chooser.showOpenDialog(frame);

if(returnVal == JFileChooser.APPROVE_OPTION)
{
    File f = chooser.getSelectedFile();
    textField.setText(f.getAbsolutePath());

    File[] contents = f.listFiles();
    for(int file=0;file<contents.length;file++)
    {
        System.out.println(contents[file].getName()); //here you get the contents of the selected directory
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文