Java代码一行一行读取txt的内容

该博客介绍了一段Java代码,用于逐行读取指定路径的txt文件内容,并过滤掉包含特定字符串的行。通过使用FileInputStream、InputStreamReader和BufferedReader实现文件读取,将读取到的不含有特定字符串的行存储到一个列表中。
摘要由CSDN通过智能技术生成

Java代码一行一行读取txt的内容 - 码代码的小表哥 - 博客园public static void main(String[] args) { // 文件夹路径 String path = "E:\\eclipse work\\ImageUtil\\shttps://www.cnblogs.com/woshuaile/p/8432478.html

public static void main(String[] args) {
        // 文件夹路径 
        String path = "E:\\eclipse work\\ImageUtil\\src\\scan.txt";
        List<String> scanListPath = readFile02(path);
    }
 
 
 
/**
     * 读取一个文本 一行一行读取
     *
     * @param path
     * @return
     * @throws IOException
     */
    public static List<String> readFile02(String path) throws IOException {
        // 使用一个字符串集合来存储文本中的路径 ,也可用String []数组
        List<String> list = new ArrayList<String>();
        FileInputStream fis = new FileInputStream(path);
        // 防止路径乱码   如果utf-8 乱码  改GBK     eclipse里创建的txt  用UTF-8,在电脑上自己创建的txt  用GBK
        InputStreamReader isr = new InputStreamReader(fis, "UTF-8");
        BufferedReader br = new BufferedReader(isr);
        String line = "";
        while ((line = br.readLine()) != null) {
            // 如果 t x t文件里的路径 不包含---字符串       这里是对里面的内容进行一个筛选
            if (line.lastIndexOf("---") < 0) {
                list.add(line);
            }
        }
        br.close();
        isr.close();
        fis.close();
        return list;
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值