gpt4 book ai didi

java - JFilechooser 窗口?如何过滤文件?

转载 作者:行者123 更新时间:2023-12-01 07:16:06 25 4
gpt4 key购买 nike

在 NetBeans 中,有一个称为 JFileChooser 的对象。

我想问一下如何设置过滤器以便仅显示具有 .wds 扩展名的文件。

.wds 是我在程序中使用的扩展名。

最佳答案

您必须为 *.wds 文件创建一个过滤器类:

class MyFilter extends javax.swing.filechooser.FileFilter {
public boolean accept(File file) {
String filename = file.getName();
return filename.endsWith(".wds");
}
public String getDescription() {
return "*.wds";
}
}

然后将过滤器添加到 JFileChooser 中。

fileChooser.addChoosableFileFilter(new MyFilter());

关于java - JFilechooser 窗口?如何过滤文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1876841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com