JFileChooser过滤器
JFileChooser fd = new JFileChooser();
//用内部匿名类自定义过滤器,只看见txt文件
fd.setFileFilter(new FileFilter() {
@Override
public boolean accept(File f) {
if (f.isDirectory()) {
return true;
}
return f.getName().endsWith(".txt");
}
@Override
public String getDescription() {
return ".txt";
}
});
浙公网安备 33010602011771号