提问人:manoj singh 提问时间:5/3/2011 最后编辑:Mahozadmanoj singh 更新时间:9/25/2023 访问量:1455027
如何使用 Java 逐行读取大型文本文件?
How can I read a large text file line by line using Java?
答:
看看这个博客:
可以指定缓冲区大小,或者 可以使用默认大小。这 默认值对于大多数人来说已经足够大了 目的。
// Open the file
FileInputStream fstream = new FileInputStream("textfile.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
//Read File Line By Line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
System.out.println (strLine);
}
//Close the input stream
in.close();
评论
DataInputStream
您需要使用中的方法。
从该类创建一个新对象,并对他操作此方法并将其保存到字符串中。readLine()
class BufferedReader
您可以使用 Scanner 类
Scanner sc=new Scanner(file);
sc.nextLine();
评论
Scanner
BufferedReader.readLine()
一种常见的模式是使用
try (BufferedReader br = new BufferedReader(new FileReader(file))) {
String line;
while ((line = br.readLine()) != null) {
// process the line.
}
}
如果假设没有字符编码,则可以更快地读取数据。例如 ASCII-7,但它不会有太大区别。您处理数据的过程很可能需要更长的时间。
编辑:一种不太常见的模式,可以避免泄漏的范围。line
try(BufferedReader br = new BufferedReader(new FileReader(file))) {
for(String line; (line = br.readLine()) != null; ) {
// process the line.
}
// line is not visible here.
}
更新:在 Java 8 中,您可以做到
try (Stream<String> stream = Files.lines(Paths.get(fileName))) {
stream.forEach(System.out::println);
}
注意:您必须将 Stream 放在 try-with-resource 块中,以确保在其上调用 #close 方法,否则底层文件句柄永远不会关闭,直到 GC 稍后才关闭。
评论
for(String line = br.readLine(); line != null; line = br.readLine())
try( Stream<String> lines = Files.lines(...) ){ for( String line : (Iterable<String>) lines::iterator ) { ... } }
下面是一个示例,其中包含完整的错误处理和支持 Java 7 之前的字符集规范。在 Java 7 中,您可以使用 try-with-resources 语法,这使代码更简洁。
如果只想要默认字符集,则可以跳过 InputStream 并使用 FileReader。
InputStream ins = null; // raw byte-stream
Reader r = null; // cooked reader
BufferedReader br = null; // buffered for readLine()
try {
String s;
if (true) {
String data = "#foobar\t1234\n#xyz\t5678\none\ttwo\n";
ins = new ByteArrayInputStream(data.getBytes());
} else {
ins = new FileInputStream("textfile.txt");
}
r = new InputStreamReader(ins, "UTF-8"); // leave charset out for default
br = new BufferedReader(r);
while ((s = br.readLine()) != null) {
System.out.println(s);
}
}
catch (Exception e)
{
System.err.println(e.getMessage()); // handle exception
}
finally {
if (br != null) { try { br.close(); } catch(Throwable t) { /* ensure close happens */ } }
if (r != null) { try { r.close(); } catch(Throwable t) { /* ensure close happens */ } }
if (ins != null) { try { ins.close(); } catch(Throwable t) { /* ensure close happens */ } }
}
这是 Groovy 版本,具有完整的错误处理功能:
File f = new File("textfile.txt");
f.withReader("UTF-8") { br ->
br.eachLine { line ->
println line;
}
}
评论
ByteArrayInputStream
Java 8 发布后(2014 年 3 月),您将能够使用流:
try (Stream<String> lines = Files.lines(Paths.get(filename), Charset.defaultCharset())) {
lines.forEachOrdered(line -> process(line));
}
打印文件中的所有行:
try (Stream<String> lines = Files.lines(file, Charset.defaultCharset())) {
lines.forEachOrdered(System.out::println);
}
评论
StandardCharsets.UTF_8
Stream<String>
forEach()
forEachOrdered()
forEach(this::process)
forEach()
forEachOrdered
在 Java 8 中,您可以执行以下操作:
try (Stream<String> lines = Files.lines (file, StandardCharsets.UTF_8))
{
for (String line : (Iterable<String>) lines::iterator)
{
;
}
}
一些注意事项:返回的流(与大多数流不同)需要关闭。由于这里提到的原因,我避免使用 .奇怪的代码将 Stream 强制转换为 Iterable。Files.lines
forEach()
(Iterable<String>) lines::iterator
评论
Iterable
(Iterable<String>)
for(String line : (Iterable<String>) lines.skip(1)::iterator)
Stream
Files.newBufferedReader
Files.lines
readLine()
null
(Iterable<String>) lines::iterator
Unlike readAllLines, [File.lines] does not read all lines into a List, but instead populates lazily as the stream is consumed... The returned stream encapsulates a Reader.
在 Java 7 中:
String folderPath = "C:/folderOfMyFile";
Path path = Paths.get(folderPath, "myFileName.csv"); //or any text file eg.: txt, bat, etc
Charset charset = Charset.forName("UTF-8");
try (BufferedReader reader = Files.newBufferedReader(path , charset)) {
while ((line = reader.readLine()) != null ) {
//separate all csv fields into string array
String[] lineVariables = line.split(",");
}
} catch (IOException e) {
System.err.println(e);
}
评论
StandardCharsets.UTF_8
Charset.forName("UTF-8")
Java 9:
try (Stream<String> stream = Files.lines(Paths.get(fileName))) {
stream.forEach(System.out::println);
}
评论
System.getProperty("os.name").equals("Linux")
==
FileReader 不允许指定编码,如果需要指定编码,请改用:InputStreamReader
try {
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(filePath), "Cp1252"));
String line;
while ((line = br.readLine()) != null) {
// process the line.
}
br.close();
} catch (IOException e) {
e.printStackTrace();
}
如果从 Windows 导入此文件,它可能具有 ANSI 编码 (Cp1252),因此必须指定编码。
您还可以使用 Apache Commons IO:
File file = new File("/home/user/file.txt");
try {
List<String> lines = FileUtils.readLines(file);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
评论
FileUtils.readLines(file)
是已弃用的方法。此外,该方法调用 IOUtils.readLines
,后者使用 BufferedReader 和 ArrayList。这不是一种逐行的方法,当然也不是一种用于读取几 GB 的方法。
我通常直接做阅读程序:
void readResource(InputStream source) throws IOException {
BufferedReader stream = null;
try {
stream = new BufferedReader(new InputStreamReader(source));
while (true) {
String line = stream.readLine();
if(line == null) {
break;
}
//process line
System.out.println(line)
}
} finally {
closeQuiet(stream);
}
}
static void closeQuiet(Closeable closeable) {
if (closeable != null) {
try {
closeable.close();
} catch (IOException ignore) {
}
}
}
在 Java 8 中,还有一种使用 Files.lines()
的替代方法。如果你的输入源不是文件,而是更抽象的东西,比如 a 或 an ,你可以通过 s 方法流式传输这些行。Reader
InputStream
BufferedReader
lines()
例如:
try (BufferedReader reader = new BufferedReader(...)) {
reader.lines().forEach(line -> processLine(line));
}
将调用 读取的每个输入行。processLine()
BufferedReader
您可以做的是使用扫描仪扫描整个文本并逐行浏览文本。 当然,您应该导入以下内容:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public static void readText throws FileNotFoundException {
Scanner scan = new Scanner(new File("samplefilename.txt"));
while(scan.hasNextLine()){
String line = scan.nextLine();
//Here you can manipulate the string the way you want
}
}
扫描仪基本上会扫描所有文本。while 循环用于遍历整个文本。
该函数是一个布尔值,如果文本中还有更多行,则返回 true。该函数以 String 的形式为您提供一整行,然后您可以按照自己的方式使用它。尝试打印文本。.hasNextLine()
.nextLine()
System.out.println(line)
旁注:.txt是文件类型文本。
评论
BufferedReader.readLine()
实现这一目标的明确方法,
例如:
如果您在当前目录上有dataFile.txt
import java.io.*;
import java.util.Scanner;
import java.io.FileNotFoundException;
public class readByLine
{
public readByLine() throws FileNotFoundException
{
Scanner linReader = new Scanner(new File("dataFile.txt"));
while (linReader.hasNext())
{
String line = linReader.nextLine();
System.out.println(line);
}
linReader.close();
}
public static void main(String args[]) throws FileNotFoundException
{
new readByLine();
}
}
评论
用于使用 Java 8 读取文件
package com.java.java8;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.stream.Stream;
/**
* The Class ReadLargeFile.
*
* @author Ankit Sood Apr 20, 2017
*/
public class ReadLargeFile {
/**
* The main method.
*
* @param args
* the arguments
*/
public static void main(String[] args) {
try {
Stream<String> stream = Files.lines(Paths.get("C:\\Users\\System\\Desktop\\demoData.txt"));
stream.forEach(System.out::println);
}
catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
BufferedReader br;
FileInputStream fin;
try {
fin = new FileInputStream(fileName);
br = new BufferedReader(new InputStreamReader(fin));
/*Path pathToFile = Paths.get(fileName);
br = Files.newBufferedReader(pathToFile,StandardCharsets.US_ASCII);*/
String line = br.readLine();
while (line != null) {
String[] attributes = line.split(",");
Movie movie = createMovie(attributes);
movies.add(movie);
line = br.readLine();
}
fin.close();
br.close();
} catch (FileNotFoundException e) {
System.out.println("Your Message");
} catch (IOException e) {
System.out.println("Your Message");
}
它对我有用。希望它也能帮助你。
您可以使用流来更精确地执行此操作:
Files.lines(Paths.get("input.txt")).forEach(s -> stringBuffer.append(s);
评论
您可以使用以下代码:
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
public class ReadTextFile {
public static void main(String[] args) throws IOException {
try {
File f = new File("src/com/data.txt");
BufferedReader b = new BufferedReader(new FileReader(f));
String readLine = "";
System.out.println("Reading file using Buffered Reader");
while ((readLine = b.readLine()) != null) {
System.out.println(readLine);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
评论
readLine
我记录并测试了 10 种不同的方法来读取 Java 中的文件,然后通过让它们在 1KB 到 1GB 的测试文件中读取来相互运行它们。以下是读取 1GB 测试文件最快的 3 种文件读取方法。
请注意,在运行性能测试时,我没有向控制台输出任何内容,因为这确实会减慢测试速度。我只是想测试原始阅读速度。
1) java.nio.file.Files.readAllBytes()
在 Java 7、8、9 中测试。总的来说,这是最快的方法。读取 1GB 文件始终不到 1 秒。
import java.io..File;
import java.io.IOException;
import java.nio.file.Files;
public class ReadFile_Files_ReadAllBytes {
public static void main(String [] pArgs) throws IOException {
String fileName = "c:\\temp\\sample-1GB.txt";
File file = new File(fileName);
byte [] fileBytes = Files.readAllBytes(file.toPath());
char singleChar;
for(byte b : fileBytes) {
singleChar = (char) b;
System.out.print(singleChar);
}
}
}
2) java.nio.file.Files.lines()
这在 Java 8 和 9 中测试成功,但由于缺乏对 lambda 表达式的支持,它在 Java 7 中不起作用。读取 1GB 文件大约需要 3.5 秒,这在读取较大文件方面排名第二。
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.stream.Stream;
public class ReadFile_Files_Lines {
public static void main(String[] pArgs) throws IOException {
String fileName = "c:\\temp\\sample-1GB.txt";
File file = new File(fileName);
try (Stream linesStream = Files.lines(file.toPath())) {
linesStream.forEach(line -> {
System.out.println(line);
});
}
}
}
3) 缓冲读卡器
经测试可在 Java 7、8、9 中工作。读取 1GB 测试文件大约需要 4.5 秒。
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class ReadFile_BufferedReader_ReadLine {
public static void main(String [] args) throws IOException {
String fileName = "c:\\temp\\sample-1GB.txt";
FileReader fileReader = new FileReader(fileName);
try (BufferedReader bufferedReader = new BufferedReader(fileReader)) {
String line;
while((line = bufferedReader.readLine()) != null) {
System.out.println(line);
}
}
}
您可以在此处找到所有 10 种文件读取方法的完整排名。
评论
System.out.print/println()
通过使用 org.apache.commons.io 包,它提供了更高的性能,尤其是在使用 Java 6 及更低版本的遗留代码中。
Java 7 具有更好的 API,异常更少 处理和更有用的方法:
LineIterator lineIterator = null;
try {
lineIterator = FileUtils.lineIterator(new File("/home/username/m.log"), "windows-1256"); // The second parameter is optionnal
while (lineIterator.hasNext()) {
String currentLine = lineIterator.next();
// Some operation
}
}
finally {
LineIterator.closeQuietly(lineIterator);
}
Maven的
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
对于最终来到这里的 Android 开发人员(使用 Kotlin 的人):
val myFileUrl = object{}.javaClass.getResource("/vegetables.txt")
val file = File(myFileUrl.toURI())
file
.bufferedReader()
.lineSequence()
.forEach(::println)
艺术
val myFileUrl = object{}.javaClass.getResource("/vegetables.txt")
val file = File(myFileUrl.toURI())
file.useLines { lines ->
lines.forEach(::println)
}
笔记:
vegetables.txt 文件应位于类路径中(例如,在 src/main/resources 目录中)
上述解决方案都默认将文件编码视为文件编码。您可以将所需的编码指定为函数的参数。
UTF-8
上述解决方案不需要任何进一步的操作,例如关闭文件或读取器。它们由 Kotlin 标准库自动处理。
评论