我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Java读取文件的几种方式

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Java读取文件的几种方式

1. 使用流读取文件

public static void stream() {    String fileName = "D:\\test.txt";    final String CHARSET_NAME = "UTF-8";    List content = new ArrayList<>();    try (BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(fileName), CHARSET_NAME))) {        String line;        while ((line = br.readLine()) != null) {            content.add(line);        }    } catch (Exception e) {        e.printStackTrace();    }//        content.forEach(System.out::println);    System.out.println(content.size());}

2. 使用JDK1.7提供的NIO读取文件(适用于小文件)

public static void nioOfJDK7() {    String fileName = "D:\\test.txt";    final String CHARSET_NAME = "UTF-8";    List content = new ArrayList<>(0);    try {        content = Files.readAllLines(Paths.get(fileName), Charset.forName(CHARSET_NAME));    } catch (Exception e) {        e.printStackTrace();    }//        content.forEach(System.out::println);    System.out.println(content.size());}

3. 使用JDK1.7提供的NIO读取文件(适用于大文件)

public static void streamOfJDK7() {    String fileName = "D:\\test.txt";    final String CHARSET_NAME = "UTF-8";    List content = new ArrayList<>();    try (BufferedReader br = Files.newBufferedReader(Paths.get(fileName), Charset.forName(CHARSET_NAME))) {        String line;        while ((line = br.readLine()) != null) {            content.add(line);        }    } catch (Exception e) {        e.printStackTrace();    }//        content.forEach(System.out::println);    System.out.println(content.size());}

4. 使用JDK1.4提供的NIO读取文件(适用于超大文件)

public static void nioOfJDK4() {    String fileName = "D:\\test.txt";    final String CHARSET_NAME = "UTF-8";    final int ASCII_LF = 10; // 换行符    final int ASCII_CR = 13; // 回车符    List content = new ArrayList<>();    try (FileChannel fileChannel = new RandomAccessFile(fileName, "r").getChannel()) {        ByteBuffer byteBuffer = ByteBuffer.allocate(1024 * 100);        byte[] lineByte;        byte[] temp = new byte[0];        while (fileChannel.read(byteBuffer) != -1) {            // 获取缓冲区位置,即读取长度            int readSize = byteBuffer.position();            // 将读取位置置0,并将读取位置标为废弃            byteBuffer.rewind();            // 读取内容            byte[] readByte = new byte[readSize];            byteBuffer.get(readByte);            // 清除缓存区            byteBuffer.clear();            // 读取内容是否包含一整行            boolean hasLF = false;            int startNum = 0;            for (int i = 0; i < readSize; i++) {                if (readByte[i] == ASCII_LF) {                    hasLF = true;                    int tempNum = temp.length;                    int lineNum = i - startNum;                    // 数组大小已经去掉换行符                    lineByte = new byte[tempNum + lineNum];                    System.arraycopy(temp, 0, lineByte, 0, tempNum);                    temp = new byte[0];                    System.arraycopy(readByte, startNum, lineByte, tempNum, lineNum);                    String line = new String(lineByte, 0, lineByte.length, CHARSET_NAME);                    content.add(line);                    // 过滤回车符和换行符                    if (i + 1 < readSize && readByte[i + 1] == ASCII_CR) {                        startNum = i + 2;                    } else {                        startNum = i + 1;                    }                }            }            if (hasLF) {                temp = new byte[readByte.length - startNum];                System.arraycopy(readByte, startNum, temp, 0, temp.length);            } else {                // 单次读取的内容不足一行的情况                byte[] toTemp = new byte[temp.length + readByte.length];                System.arraycopy(temp, 0, toTemp, 0, temp.length);                System.arraycopy(readByte, 0, toTemp, temp.length, readByte.length);                temp = toTemp;            }        }        // 最后一行        if (temp.length > 0) {            String lastLine = new String(temp, 0, temp.length, CHARSET_NAME);            content.add(lastLine);        }    } catch (Exception e) {        e.printStackTrace();    }//        content.forEach(System.out::println);    System.out.println(content.size());}

5. 使用cmmons-io依赖提供的FileUtils工具类读取文件

添加依赖:

    commons-io    commons-io    2.11.0
public static void fileOfCommonsIO() {        String fileName = "D:\\test.txt";        final String CHARSET_NAME = "UTF-8";        List content = new ArrayList<>(0);        try {            content = FileUtils.readLines(new File(fileName), CHARSET_NAME);        } catch (Exception e) {            e.printStackTrace();        }//        content.forEach(System.out::println);        System.out.println(content.size());    }

6. 使用cmmons-io依赖提供的IOtils工具类读取文件

添加依赖:

    commons-io    commons-io    2.11.0
public static void ioOfCommonsIO() {        String fileName = "D:\\test.txt";        final String CHARSET_NAME = "UTF-8";        List content = new ArrayList<>(0);        try {            content = IOUtils.readLines(new FileInputStream(fileName), CHARSET_NAME);        } catch (Exception e) {            e.printStackTrace();        }//        content.forEach(System.out::println);        System.out.println(content.size());    }

7. 使用hutool依赖提供的FileUtil工具类读取文件

添加依赖:

    cn.hutool    hutool-core    5.8.10或者:    cn.hutool    hutool-all    5.8.10
public static void fileOfHutool() {        String fileName = "D:\\test.txt";        final String CHARSET_NAME = "UTF-8";        List content = FileUtil.readLines(fileName, CHARSET_NAME);//        content.forEach(System.out::println);        System.out.println(content.size());    }

8. 使用hutool依赖提供的IoUtil工具类读取文件

添加依赖:

    cn.hutool    hutool-core    5.8.10或者:    cn.hutool    hutool-all    5.8.10
public static void ioOfHutool() {        String fileName = "D:\\test.txt";        final String CHARSET_NAME = "UTF-8";        List content = new ArrayList<>();        try {            IoUtil.readLines(new FileInputStream(fileName), CharsetUtil.charset(CHARSET_NAME), content);        } catch (Exception e) {            e.printStackTrace();        }//        content.forEach(System.out::println);        System.out.println(content.size());    }

9. 测试耗时

  测试文件:30000行、21.8 MB

public static void main(String[] args) {    StopWatch stopWatch = new StopWatch();    stopWatch.start("stream");    stream();    stopWatch.stop();    stopWatch.start("nioOfJDK7");    nioOfJDK7();    stopWatch.stop();    stopWatch.start("streamOfJDK7");    streamOfJDK7();    stopWatch.stop();    stopWatch.start("nioOfJDK4");    nioOfJDK4();    stopWatch.stop();    stopWatch.start("fileOfCommonsIO");    fileOfCommonsIO();    stopWatch.stop();    stopWatch.start("ioOfCommonsIO");    ioOfCommonsIO();    stopWatch.stop();    stopWatch.start("fileOfHutool");    fileOfHutool();    stopWatch.stop();    stopWatch.start("ioOfHutool");    ioOfHutool();    stopWatch.stop();    for (StopWatch.TaskInfo taskInfo : stopWatch.getTaskInfo()) {        System.out.println(taskInfo.getTaskName() + " -> " + taskInfo.getTimeMillis() + " ms");    }    //    System.out.println(stopWatch.prettyPrint());}

  测试3次耗时统计(单位:ms):

测试序号streamnioOfJDK7streamOfJDK7nioOfJDK4fileOfCommonsIOioOfCommonsIOfileOfHutoolioOfHutool
1110113852141096417860
298126772361357016959
3106122902241306816562

  从测试结果来看,Hutool提供的IoUtil、commons-io提供的IoUtil以及JDK1.7提供的NIO基于流方式耗时更优,但测试还应参考内存占用情况,具体可自行测试。

来源地址:https://blog.csdn.net/qq_48008521/article/details/129312430

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Java读取文件的几种方式

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Java 读取 properties 配置文件的几种方式

如果你使用 Spring 框架,你可以使用PropertyPlaceholderConfigurer 类来加载和解析属性文件中的配置。这对于在 Spring 应用程序中管理配置非常有用。

浅谈Java几种文件读取方式耗时

本文主要介绍了浅谈Java几种文件读取方式耗时,主要介绍了4种,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-05-15

【SpringBoot系列】读取yml文件的几种方式

Spring Boot读取yml文件的主要方式有以下几种: 1.@Value注解 ​ 我们可以在bean的属性上使用@Value注解,直接读取yml中的值,如: application.yml: name: Zhangsan Bean: p
2023-08-18

SpringBoot读取yml文件有哪几种方式

这篇文章主要介绍了SpringBoot读取yml文件有哪几种方式,具有一定借鉴价值,需要的朋友可以参考下。下面就和我一起来看看吧。Spring Boot读取yml文件的主要方式有以下几种:1.@Value注解我们可以在bean的属性上使用@
2023-07-06

java 读取json文件的2种方式

1 背景介绍 研发过程中,经常会涉及到读取配置文件等重复步骤,也行是.conf文件,也许是.json文件,但不管如何他们最终都需要进入到jave的inputStream里面。下面以读取.json文件为例 2 FileInputStream读
2023-08-18

Java读取Properties配置文件的6种方式

Java读取Properties的方式 项目结构:经典的maven项目结构 配置文件1和2内容一致: jdbc.driver=com.mysql.cj.jdbc.Driverjdbc.url=mysql://localhost:3306/
2023-08-16

Excel文件读取的两种方式

1、Pandas库的读取操作from pandas import read_exceldr=read_excel(filename,header)dr#dataframe数据dw=DataFrams(data=dict,columns=di
2023-01-31

java读取excel文件的两种方法

本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下方式一:借用 package com.ij34.util;/** * @author Admin* @date 创建时间:2017年8月29日 下午2:07
2023-05-31

java获取文件大小的几种方法

目前Java获取文件大小的方法有两种:1、通过file的length()方法获取;2、通过流式方法获取;通过流式方法又有两种,分别是旧的java.io.*中FileInputStream的available()方法和新的java..nio.
2023-05-31

Go语言读取文件的四种方式

本文主要介绍了Go语言读取文件的四种方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-05-15

C++读取文件的四种方式总结

C++可以根据不同的目的来选取文件的读取方式,C++中有四种常见的读取方式,本文主要介绍了这四种方法的具体实现,需要的可以参考一下
2023-05-15

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录