Java 逐行读取大型文本文件
本文介绍逐行读取文本文件的方法。通过示例讲解了三种不同的方法。将文件以文本格式存储非常重要,特别是当将一个结构/非结构化形式的数据从一种形式转换为另一种形式时。因此,基本的文件传输系统将txt文件读取和写入过程集成为其应用组件。因此,如何使用文本文件读取和写入方法对于制作解析器也很重要。
多种方法
给定的问题通过三种不同的方法来解决
- 通过BufferedReader类
-
通过FileInputStream
-
通过FileReader
让我们按顺序查看该程序及其输出。
注意 - 这些程序在任何在线Java编译器上都无法获得预期的结果,因为在线编辑器无法访问您本地系统的文件路径。
方法1:通过BufferedReader
在该方法中,BufferedReader提供缓冲区给FileReader。将大块读取而不是每次读取单个字符,因此性能更好。
步骤
- 步骤1 - 指定要读取的文件。
-
步骤2 - 根据不同的方法(即作为块)读取文件的行。
-
步骤3 - 将从文件中读取的行打印在显示器上。
解释
BufferedReader不同于BufferedInputStream,因为BufferedReader读取字符,而BufferedInputStream读取原始字节。Reader是BufferedReader的父类,Reader类的父类是Object类。BufferedReader类支持两个构造函数。使用这些构造函数创建bufferedReader实例。一个构造函数接受reader实例,另一个构造函数接受reader实例和缓冲区大小。
示例
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行
方法2:使用FileInputStream
Java应用程序可以使用FileInputStream从文本文件中读取数据。在这种方法中,文件内容被读取为字节流。
步骤
- 步骤1 - 指定要读取的文件。
-
步骤2 - 检索文件行以及文件被读取为字节。
-
步骤3 - 在屏幕上显示从文件读取的行。
解释
-
InputStream是FileInputStream的超类。
-
FileInputStream类支持三个构造函数。使用这些构造函数创建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行
方法3:使用FileReader
Java应用程序可以使用FileReader从文本文件中读取数据。在这种情况下,文件的内容被读取为字符流。
步骤
- 步骤1 - 设置文件的路径。
-
步骤2 - 以字符形式读取文件的行。
-
步骤3 - 在显示器/屏幕上显示从文件中读取的行。
说明
读者是FileReader的超类,Reader类是Object类的超类。指定正确的文件路径以读取大型文本。
示例
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行。
结论
在上述文章中,使用了三种不同的方法来使用Java语言从文件中读取行。第一种方法将行作为字符块来读取。另一种方法将行作为字节流来读取,第三种方法将行作为字符来读取。