搜索日志:递归遍历文件夹下的所有文件是否包含指定字符串

场景:

需要从大量的日志文件中,查到包含某个字符串的日志文件。

public class TestDemo {

    public static void main(String[] args) throws Exception {
        // 文件目录
        String path = "E:\\backuplog1111\\wecruit_app\\backuplog";
        // 指定字符串
        String content = "5d156b459b0d7889b8422cca";
        list(path,content);
    }


    public static void list(String sourcePath,String content) throws Exception {
        File file = new File(sourcePath);
        // 递归获取源文件夹下的所有文件全路径
        List<String> list = filesDirs(file, new ArrayList<>());
        // 遍历判断文件是否含有某个字符串
        for(String path:list){
            checkContainsString(path,content);
        }
    }



    /***
     * 递归遍历文件夹及子文件夹中所有文件
     * @param file 文件
     * @param pathList 所有文件全路径集合
     * @return 返回所有文件的全路径
     * @throws Exception
     */
    public static List<String> filesDirs(File file, List<String> pathList) throws Exception {
        if(file != null){
            if(file.isDirectory()){
                File[] files = file.listFiles();
                for(File f:files) {
                    filesDirs(f,pathList);
                }
            }else{
                pathList.add(file.toString());
            }
        }
        return pathList;
    }


    /**
     * 判断文件是否含有某个字符串
     * @param path  文件路径
     * @param content 指定字符串
     * @return 包含返回true,否则返回false
     * @throws IOException
     */
    public static Boolean checkContainsString(String path,String content) throws IOException {
        File file = new File(path);
        InputStreamReader read = new InputStreamReader(new FileInputStream(file),"UTF-8");//考虑到编码格式
        BufferedReader bufferedReader = new BufferedReader(read);
        String line = null;
        while ((line = bufferedReader.readLine()) != null) {

            //指定字符串判断处
            if (line.contains(content)) {
                System.out.println(line);
                System.out.println(path);
                return true;
            }
        }
        return false;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值