服务器之家

服务器之家 > 正文

JAVA正则表达式过滤文件的实现方法

时间:2020-12-25 12:23     来源/作者:QING____

JAVA正则表达式过滤文件的实现方法

  正则表达式过滤文件列表,听起来简单,如果用java实现,还真需要一番周折,本文简析2种方式 

1、适用于路径确定,文件名时正则表达式的情况(jdk6的写法)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
String filePattern = "/data/logs/.+\\.log";
File f = new File(filePattern);
File parentDir = f.getParentFile();
String regex = f.getName();
FileSystem FS = FileSystems.getDefault();
final PathMatcher matcher = FS.getPathMatcher("regex:" + regex);
 
DirectoryStream.Filter<Path> fileFilter = new DirectoryStream.Filter<Path>() {
 @Override
 public boolean accept(Path entry) throws IOException {
  return matcher.matches(entry.getFileName()) && !Files.isDirectory(entry);
 }
};
 
List<File> result = Lists.newArrayList();
try (DirectoryStream<Path> stream = Files.newDirectoryStream(parentDir.toPath(), fileFilter)) {
 for (Path entry : stream) {
  result.add(entry.toFile());
 }
} catch (IOException e) {
 e.printStackTrace();
}
for(File file : result) {
 System.out.println(file.getParent() + "/" + file.getName());
}

2、适用于路径确定,文件名正则表达式的情况,这种正则表达式是JAVA支持的表达式,而非系统(unix)文件系统表达式(jdk8写法)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Path path = Paths.get("/data/logs");
Pattern pattern = Pattern.compile("^.+\\.log");
List<Path> paths = Files.walk(path).filter(p -> {
 //如果不是普通的文件,则过滤掉
 if(!Files.isRegularFile(p)) {
  return false;
 }
 File file = p.toFile();
 Matcher matcher = pattern.matcher(file.getName());
 return matcher.matches();
}).collect(Collectors.toList());
 
for(Path item : paths) {
 System.out.println(item.toFile().getPath());
}

以上就是java 正则表达式过滤文件的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://shift-alt-ctrl.iteye.com/blog/2356962

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址 2020-08-12
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
返回顶部