gpt4 book ai didi

java - 使用 Java NIO 读取大文件

转载 作者:行者123 更新时间:2023-12-02 04:12:10 25 4
gpt4 key购买 nike

我需要读取一个大文件的内容。为此,我在谷歌上搜索并找到了很多方法和资源。但我仍然很困惑哪种方法可以读取大文件(在我的例子中需要考虑的因素是内存分配、性能、大文件)

  1. 使用FileChannel
  2. 使用 Files.readAllLines
  3. 使用 BufferedReader

有人可以指导一下吗?

最佳答案

最好的选择是懒惰地读取文件。一次获取每一行并进行处理。

示例:-

Stream<String> lines = Files.lines(Paths.get("C:/files", "yourfile.txt"));

然后处理后面的行。

来自official文档:-

public static Stream<String> lines(Path path, Charset cs) throws IOException

Read all lines from a file as a Stream. Unlike readAllLines, this method does not read all lines into a List, but instead populates lazily as the stream is consumed.

关于java - 使用 Java NIO 读取大文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33689970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com