当前位置:   article > 正文

JDK8:用java.nio.file.Files.lines方法读取大型文件_files.lines() 大文件有无问题

files.lines() 大文件有无问题

先说结论:

如果要读取一个大文件(文件大小超过了内存大小),则可以考虑使用java.nio.file.Files.lines方法来读取这个大型文件的内容。

关于java.nio.file.Files类中lines方法的说明:

 jdk1.8.0_311中原码部分:

  1. /**
  2. * Read all lines from a file as a {@code Stream}. Unlike {@link
  3. * #readAllLines(Path, Charset) readAllLines}, this method does not read
  4. * all lines into a {@code List}, but instead populates lazily as the stream
  5. * is consumed.
  6. *
  7. * <p> Bytes from the file are decoded into characters using the specified
  8. * charset and the same line terminators as specified by {@code
  9. * readAllLines} are supported.
  10. *
  11. * <p> After this method returns, then any subsequent I/O exception that
  12. * occurs while reading from the file or when a malformed or unmappable byte
  13. * sequence is read, is wrapped in an {@link UncheckedIOException} that will
  14. * be thrown from the
  15. * {@link java.util.stream.Stream} method that caused the read to take
  16. * place. In case an {@code IOException} is thrown when closing the file,
  17. * it is also wrapped as an {@code UncheckedIOException}.
  18. *
  19. * <p> The returned stream encapsulates a {@link Reader}. If timely
  20. * disposal of file system resources is required, the try-with-resources
  21. * construct should be used to ensure that the stream's
  22. * {@link Stream#close close} method is invoked after the stream operations
  23. * are completed.
  24. *
  25. *
  26. * @param path
  27. * the path to the file
  28. * @param cs
  29. * the charset to use for decoding
  30. *
  31. * @return the lines from the file as a {@code Stream}
  32. *
  33. * @throws IOException
  34. * if an I/O error occurs opening the file
  35. * @throws SecurityException
  36. * In the case of the default provider, and a security manager is
  37. * installed, the {@link SecurityManager#checkRead(String) checkRead}
  38. * method is invoked to check read access to the file.
  39. *
  40. * @see #readAllLines(Path, Charset)
  41. * @see #newBufferedReader(Path, Charset)
  42. * @see java.io.BufferedReader#lines()
  43. * @since 1.8
  44. */
  45. public static Stream<String> lines(Path path, Charset cs) throws IOException {
  46. BufferedReader br = Files.newBufferedReader(path, cs);
  47. try {
  48. return br.lines().onClose(asUncheckedRunnable(br));
  49. } catch (Error|RuntimeException e) {
  50. try {
  51. br.close();
  52. } catch (IOException ex) {
  53. try {
  54. e.addSuppressed(ex);
  55. } catch (Throwable ignore) {}
  56. }
  57. throw e;
  58. }
  59. }
  60. /**
  61. * Read all lines from a file as a {@code Stream}. Bytes from the file are
  62. * decoded into characters using the {@link StandardCharsets#UTF_8 UTF-8}
  63. * {@link Charset charset}.
  64. *
  65. * <p> This method works as if invoking it were equivalent to evaluating the
  66. * expression:
  67. * <pre>{@code
  68. * Files.lines(path, StandardCharsets.UTF_8)
  69. * }</pre>
  70. *
  71. * @param path
  72. * the path to the file
  73. *
  74. * @return the lines from the file as a {@code Stream}
  75. *
  76. * @throws IOException
  77. * if an I/O error occurs opening the file
  78. * @throws SecurityException
  79. * In the case of the default provider, and a security manager is
  80. * installed, the {@link SecurityManager#checkRead(String) checkRead}
  81. * method is invoked to check read access to the file.
  82. *
  83. * @since 1.8
  84. */
  85. public static Stream<String> lines(Path path) throws IOException {
  86. return lines(path, StandardCharsets.UTF_8);
  87. }

 从javadoc注解中可以看出,它将文件中的所有行作为 Stream 读取,与 readAllLines 不同,此方法不会将所有行读入 List 中(不全部加载到内存中),而是在流被使用时延迟填充(populates lazily)

java.nio.file.Files 类中的 lines 方法是 Java 8 引入的一个非常有用的方法,用于处理文件和目录的 I/O 操作,它提供了一种流式(Stream-based)的方式来读取文件内容,并将文件的每一行作为字符串(String)对象进行处理。

lines(Path path)方法使用默认字符集(通常是 UTF-8)来解码文件中的字节。

使用场景:

  1. 文本文件处理:当你需要读取和处理大量文本文件时,lines 方法可以方便地按行处理文件内容。
  2. 数据分析和转换:如果你需要对文件中的数据进行分析或转换,可以将 lines 方法返回的 Stream 对象与其他 Stream 操作(如 mapfilterreduce 等)结合使用。
  3. 日志处理:对于日志文件的分析和监控,lines 方法可以方便地读取日志文件并按行进行处理。
  4. 批量文本操作:对于需要批量处理文本文件的场景(如批量重命名、查找和替换等),lines 方法可以提供一个高效且简洁的解决方案。

优缺点:

优点

  1. 简洁性:与传统的文件读取方式相比,lines 方法更加简洁和直观。
  2. 流式处理:与 Stream API 紧密集成,使得文件处理更加灵活和高效。
  3. 内存效率默认情况下,lines 方法使用懒加载(lazy loading)方式读取文件内容,这意味着它不会一次性加载整个文件到内存中,从而减少了内存使用。

缺点

  1. 字符集问题lines 方法默认使用系统默认字符集来解码文件内容。如果文件使用了非默认字符集(如 ISO-8859-1),则需要手动指定字符集,否则可能会出现乱码问题。
  2. 错误处理:与 BufferedReader 或 Scanner 相比,lines 方法在处理文件读取错误时可能不太直观。你需要使用 try-catch 块来捕获和处理可能发生的 IOException
  3. 性能考虑:虽然 lines 方法在大多数情况下都足够高效,但在处理大文件时,由于它使用 Stream API,可能会增加一些额外的开销。此外,如果你需要多次读取同一文件或进行大量的小文件读取操作,使用传统的文件读取方式可能会更加高效。

示例代码:

  1. import java.io.IOException;
  2. import java.nio.charset.StandardCharsets;
  3. import java.nio.file.Files;
  4. import java.nio.file.Paths;
  5. import java.util.stream.Stream;
  6. public class FilesTest {
  7. public static void main(String[] args) {
  8. String filePath = "page\example.txt";
  9. // 使用默认字符编码读取文件的每一行
  10. try (Stream<String> lines = Files.lines(Paths.get(filePath))) {
  11. lines.forEach(System.out::println);
  12. } catch (IOException e) {
  13. e.printStackTrace();
  14. }
  15. // 使用指定的字符编码读取文件的每一行
  16. try (Stream<String> lines = Files.lines(Paths.get(filePath), StandardCharsets.UTF_8)) {
  17. lines.forEach(System.out::println);
  18. } catch (Exception e) {
  19. e.printStackTrace();
  20. }
  21. }
  22. }

所以,如果之后遇到需要读取大型文件的内容进行处理又担心内存不足问题时,可以考虑使用Files.lines方法来进行处理哦~~~,它是在jdk1.8中引入的

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号