Java程序逐行读取大型文本文件


本文介绍了在Java中逐行读取文本文件的方法。这里解释了三种不同的方法并附带示例。特别是当数据从一种结构化/非结构化形式传输到另一种形式时,将文件存储为文本格式非常重要。因此,基本的 文件传输系统将其应用程序组件集成到txt文件的读取和写入过程中。因此,了解如何使用文本文件读取和写入方法对于创建解析器也很重要。

多种方法

给定的问题陈述通过三种不同的方法解决:

让我们按顺序查看程序及其输出。

注意 - 这些程序在任何在线Java编译器上都不会产生预期的结果。在线编辑器无法访问您本地系统的文件路径。

使用BufferedReader

在这种方法中,缓冲区由BufferedReader提供给FileReader。它的性能很高效,因为它使用大块读取而不是一次读取单个字符。

  • 指定要读取的文件。

  • 根据不同的方法读取文件行,这意味着文件被逐块读取。

  • 在显示屏/屏幕上打印从文件中读取的行。

示例

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class Read {
   public static void main(String[] args) {
      
      // making the BufferedReader object
      BufferedReader b_reader;
      try {
      
         // Reading the sample.txt file
         b_reader = new BufferedReader(new FileReader("sample.txt"));
         
         //reading line by line
         String ln = b_reader.readLine();
         while (ln != null) {
      
            //printing the line
            System.out.println(ln);
            ln = b_reader.readLine();
         }
         b_reader.close();
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

输出

C:\java\javaprgstu\filehandling\File Handling Tutorial\Code\1_ReadFiles>javac Read.java
C:\java\javaprgstu\filehandling\File Handling Tutorial\Code\1_ReadFiles>java Read
Block1
This is an experimental file. Inserting the line 100
This is an experimental file. Inserting the line 101
This is an experimental file. Inserting the line 102
…..
This is an experimental file. Inserting the line 277
Block2
This is an experimental file. Inserting the line 100
This is an experimental file. Inserting the line 101
….
This is an experimental file. Inserting the line 277
Block3
This is an experimental file. Inserting the line 100
…
This is an experimental file. Inserting the line 277

使用的示例文件包含3个包含177行的块。

解释

BufferReader与BufferedInputStream不同,因为BufferedReader读取字符,而BufferedInputStream读取原始字节。Reader是BufferedReader的超类,Reader类的超类是Object类。BufferedReader类支持两个构造函数。使用这些构造函数创建bufferedReader实例。一个构造函数接受reader实例,另一个构造函数接受reader实例和缓冲区大小。

使用FileInputStream

Java应用程序可以使用FileInputStream从文本文件读取数据。在这种方法中,文件内容作为字节流读取。

  • 指定要读取的文件。

  • 检索文件行,文件作为字节读取。

  • 在屏幕上显示从文件中读取的行。

示例

import java.io.FileInputStream;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.Scanner;
import java.io.FileNotFoundException;
public class Read2 {
   public static void main(String[] args)
   
   // exception handling
   throws FileNotFoundException{
      String path = "C:\java\javaprgstu\filehandling\File Handling Tutorial\Code\1_ReadFiles\sample.txt";
   
      //passing the file as a parameter to FileInputStream
      InputStream ins = new FileInputStream(path);
      
      // using Scanner scn to read the file input stream
      try (Scanner scn = new Scanner(
      ins, StandardCharsets.UTF_8.name())) {
         while (scn.hasNextLine()) {
         
            //printing line by line
            System.out.println(scn.nextLine());
         }
      }
   }
}

输出

C:\java\javaprgstu\filehandling\File Handling Tutorial\Code\1_ReadFiles>javac Read2.java
C:\java\javaprgstu\filehandling\File Handling Tutorial\Code\1_ReadFiles>java Read2
Block1
This is an experimental file. Inserting the line 100
This is an experimental file. Inserting the line 101
This is an experimental file. Inserting the line 102
This is an experimental file. Inserting the line 103
This is an experimental file. Inserting the line 104
This is an experimental file. Inserting the line 105
This is an experimental file. Inserting the line 106
……………………………………

使用的示例文件包含3个包含177行的块。

解释

InputStream是FileInputStream的超类。FileInputStream类支持三个构造函数。使用这些构造函数创建FileInputStream实例。一个构造函数接受String作为参数,另一个构造函数接受文件对象作为参数。

使用FileReader

Java应用程序可以使用FileReader从文本文件读取数据。在这种情况下,文件的内容作为字符流读取。

  • 设置文件的路径。

  • 读取文件行,文件作为字符读取。

  • 在显示屏/屏幕上显示从文件中读取的行。

示例

import java.io.File;
import java.io.FileReader;
import java.io.IOException;
public class Read3{
   public static void main(String[] args){
      
      //Set the name of the file to read
      File fileone = new File("sample.txt");
      
      // make frd as a FileReader object
      try (FileReader frd = new FileReader(fileone)){
         int content1;
         while ((content1 = frd.read()) != -1) {
            System.out.print((char) content1);
         }
      } catch (IOException e) {
            e.printStackTrace();
         }
   }
}

输出

C:\java\javaprgstu\filehandling\File Handling Tutorial\Code\1_ReadFiles>javac Read3.java
C:\java\javaprgstu\filehandling\File Handling Tutorial\Code\1_ReadFiles>java Read3
Block1
This is an experimental file. Inserting the line 100
This is an experimental file. Inserting the line 101
This is an experimental file. Inserting the line 102
This is an experimental file. Inserting the line 103
This is an experimental file. Inserting the line 104
This is an experimental file. Inserting the line 105
This is an experimental file. Inserting the line 106
This is an experimental file. Inserting the line 107
……………………………………….

使用的示例文件包含3个包含177行的块。

解释

Reader是FileReader的超类,Reader类的超类是Object类。指定文件的正确路径以读取大型文本。

结论

在以上文章中,使用了三种不同的方法来使用Java语言从文件中读取行。第一种方法将行作为字符块读取。另一种方法将行作为字节流读取,第三种方法将行作为字符读取。

更新于:2024年11月8日

浏览量:542

启动您的职业生涯

完成课程获得认证

开始学习
广告