gpt4 book ai didi

java - 我怎样才能在java中获取没有.txt扩展名的文件

转载 作者:行者123 更新时间:2023-12-01 19:08:00 25 4
gpt4 key购买 nike

谁能告诉我如何从没有 .txt 扩展名的目录中获取所有文件。我已经编写了 .txt 扩展名,但不知道如何修改它以获取没有 .txt 扩展名的文件。这是我的代码

import java.io.*;

public class OnlyExt implements FilenameFilter {
String ext;

public OnlyExt(String ext) {
this.ext = "." + ext;
}

public boolean accept(File dir, String name) {
return name.endsWith(ext);


}

}

这里 ext="txt"

请帮助我。谢谢。

最佳答案

注意! ( unary negation operator )

public boolean accept(File dir, String name) 
{
return !name.endsWith(ext);
}

关于java - 我怎样才能在java中获取没有.txt扩展名的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9372011/

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