search
HomeJavajavaTutorialJava program to read the contents of a large text file line by line

Java program to read the contents of a large text file line by line

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

多种方法

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

  • 通过使用 BufferedReader 类

  • 通过使用 FileInputStream

  • 通过使用 FileReader

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

注意 - 这些程序不会在任何在线 Java 编译器上给出预期结果。因为在线编辑器不会访问本地系统的文件路径。

方法 1:- 使用 BufferedReader

在此方法中,缓冲区由 BufferedReader 提供到 FileReader 中。它的性能非常有效,因为它使用更大的块读取而不是一次读取单个字符。

算法

  • 步骤 1 - 指定要读取的文件。

  • 步骤 2 - 按照不同的方法读取文件行,这意味着文件被作为一个块读取。

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

说明

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

示例(方法 1)

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 实例。一个构造函数接受 String 作为参数,另一个构造函数接受文件对象作为参数。

示例(方法 2)

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 步 - 在显示屏/屏幕上显示从文件中读取的行。

说明

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

示例(方法 3)

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 语言从文件中读取行。第一种方法将行读取为字符块。另一种方法将行作为字节流读取,第三种方法将行作为字符读取。

The above is the detailed content of Java program to read the contents of a large text file line by line. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),