If you want to know the total number of lines in a file using Java, you can achieve this in various ways. Let us take a look at a few of them.
Example 1: Using the Java BufferredReader class
package org.code2care.examples;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class CountLinesInFileJava {
public static void main(String[] args) {
String filePath = "D://data/report_2023.csv";
try (BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath))) {
int numberOfLines = 0;
while (bufferedReader.readLine() != null) {
numberOfLines++;
}
System.out.println("Total no. of Lines in File: " + numberOfLines);
} catch (IOException e) {
System.err.println("Error while reading the file: " + e.getMessage());
}
}
}
Example 2: Using Files class
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class CountLinesInFileJavaWithFilesClass {
public static void main(String[] args) {
String filePath = "D://data/report_2023.csv";
try {
long numberOfLines = Files.lines(Paths.get(filePath)).count();
System.out.println("Total no. of Lines in File: " + numberOfLines);
} catch (IOException e) {
System.err.println("Error while reading the file: " + e.getMessage());
}
}
}
Example 3: Using BufferedInputStream
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
public class ExampleUsingBufferedInputStream {
public static void main(String[] args) {
String filePath = "D://data/report_2023.csv";
try (BufferedInputStream bis = new BufferedInputStream(new FileInputStream(filePath))) {
int lineCount = 0;
int readByte;
while ((readByte = bis.read()) != -1) {
if (readByte == '\n') {
lineCount++;
}
}
System.out.println("Total no. of Lines in File: " + lineCount);
} catch (IOException e) {
System.err.println("Error while reading the file: " + e.getMessage());
}
}
}
Example 4: Using LineNumberReader
import java.io.FileReader;
import java.io.IOException;
import java.io.LineNumberReader;
public class LineNumberReaderExample {
public static void main(String[] args) {
String filePath = "D://data/report_2023.csv";
try (LineNumberReader lineNumberReader = new LineNumberReader(new FileReader(filePath))) {
while (lineNumberReader.readLine() != null) {
// Reading lines
}
int lineCount = lineNumberReader.getLineNumber();
System.out.println("Total no. of Lines in File: " + lineCount);
} catch (IOException e) {
System.err.println("Error while reading the file: " + e.getMessage());
}
}
}
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- Create Hidden File or Directory using Shell Command - Linux
- How to add border to Android TextView - Android
- How to submit website to dmoz directory - HowTos
- Create a Database Table using JDBC PreparedStatement - Java
- How To Remove Only Conditional Formatting in Excel - Microsoft
- Microsoft Office Excel - Couldnt Open the Workbook - The workbook cannot be opened. - Microsoft
- Python raise error with message example - Python
- [Fix] ValueError: substring not found in Python - Python