Python—多线程文件名称查找
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python—多线程文件名称查找相关的知识,希望对你有一定的参考价值。
参考技术A 该脚本的功能为:对某一文件夹启动任意个线程查找文件包含XXX字符的文件名,并显示该文件所在的路径
运行结果:
还没有进一步优化,欢迎大家留言评论,帮助小白改进脚本(✪ω✪)。
多线程同步查找包含特定内容的文件
package com.zdst.scs.business.hystric.checkflow; import java.io.*; public class FileTest { public static void main(String[] args){ findFile("E:\\dubbo"); } public static void findFile(String path){ //获得目录下的文件列表 File[] fileList = new File(path).listFiles(); //目录下不为空 if(fileList.length > 0){ //遍历文件数组,如果是目录,递归调用本方法,如果是文件,判断是不是.java结尾,然后调用读文件方法判断 for(File file : fileList){ if(file.isDirectory()){ findFile(file.getAbsolutePath()); }else{ if(file.getName().endsWith(".java")){ threadTest thread = new threadTest(file,"log"); new Thread(thread).start(); } } } } } } class threadTest implements Runnable{ private File file; private String key; public threadTest(File file,String key) { this.file = file; this.key = key; } @Override public void run() { BufferedReader bufferedReader; try { //获取文件的读取流 bufferedReader = new BufferedReader(new FileReader(file)); StringBuffer sb = new StringBuffer(); String line = ""; //读取文件并追加到StringBuffer上 while((line = bufferedReader.readLine()) != null){ sb.append(line); } //匹配是否存在特定的关键字 if(sb.toString().contains(key)){ System.out.println(file.getName()); } } catch (FileNotFoundException e) { e.printStackTrace(); }catch (IOException e) { e.printStackTrace(); } } }
以上是关于Python—多线程文件名称查找的主要内容,如果未能解决你的问题,请参考以下文章