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,
- CRUD operations in Spring Boot + JDBC
- Java Check Leap Year - Programs with Code Examples
- [fix] Java JDBC ConnectException: Connection refused
- How to add hours and minutes to Java Instant
- Java Program: Random Number Generator
- Java: The value of the local variable string is not used
- How to get list of all Java versions installed on macOS
- Java SE JDBC with Prepared Statement Parameterized Select Example
- Java + Spring JDBC Template + Gradle Example
- Convert String to LocalDate in Java
- Remove Trailing zeros BigDecimal Java
- Java 8 Predicate Functional Interface isEqual() Method Example
- How to Hardcode Date in Java with Examples
- Java 8: Predicate negate() default Function Example
- Java: Collect Stream as ArrayList or LinkedList
- The Motivation Behind Generics in Java Programming
- How to Add/Subtract Days to the Current Date in Java
- Error: Can not find the tag library descriptor for
- Setting up JUnit 5 dependency with Maven Example
- Run Java Code Every Second
- How to create a tar.gz file using Java
- [Fix] java: integer number too large compilation error
- Java 8: Find the Max value in a List
- Your JBoss Application Server 7 is running However you have not yet added any users to be able to access the admin console
- Convert Java Array to ArrayList Code Example
More Posts:
- Okta Hacked - Source Code Stolen from GitHub Repo - News
- How to configure Maven for Java 8/11/17 - Java
- How to make jsfiddle bootstrap ready - CSS
- Visual Studio Code: Restricted Mode is intended for safe code browsing - MacOS
- Create Custom Toast Android Programming - Android
- PHP.ini: How to Remove URL Forward Slash Before Single or Double Quotes - PHP
- How to create tar.gz file using Terminal Command - Linux
- Change the default download location for Mac Safari - MacOS