码迷,mamicode.com
首页 > 编程语言 > 详细

多线程同步查找包含特定内容的文件

时间:2018-05-21 19:32:28      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:buffered   else   获取文件   code   ide   tab   tostring   nes   check   

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();
        }
        
    }
    
}

 

多线程同步查找包含特定内容的文件

标签:buffered   else   获取文件   code   ide   tab   tostring   nes   check   

原文地址:https://www.cnblogs.com/gczmn/p/9068372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!