Java provides a variety of ways to read file contents, including: * **Files.readAllLines/Files.readAllBytes (Java 8 and above)**: Using the java.nio.file.Files class, you can easily read all lines or the entire content of a file. * **BufferedReader**: For older versions of Java, you can use the BufferedReader class to read a file line by line. * **Scanner**: The Scanner class provides another way to read files, which can read the content line by line or by delimiter.
In Java, you can read the contents of a file in a variety of ways. The following are several common methods:
1. Use the java.nio.file.Files class (Java 8 and above)
Java 8 introduces a new file I/O API to make file operations simpler. You can read all lines of a file into a list using the Files.readAllLines method, or read the entire contents of a file into a byte array using the Files.readAllBytes method.
java
##
import java.nio.file.Files; import java.nio.file.Paths; import java.io.IOException; import java.util.List; public class Main { public static void main(String[] args) { try { // 读取文件的所有行到一个列表中 List<String> lines = Files.readAllLines(Paths.get("path_to_your_file.txt")); for (String line : lines) { System.out.println(line); } // 或者读取文件的全部内容到字节数组中 byte[] bytes = Files.readAllBytes(Paths.get("path_to_your_file.txt")); String content = new String(bytes); System.out.println(content); } catch (IOException e) { e.printStackTrace(); } } }
2. Use java.io.BufferedReader
For older versions of Java, you can use BufferedReader to read files.
java
import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; public class Main { public static void main(String[] args) { BufferedReader br = null; try { br = new BufferedReader(new FileReader("path_to_your_file.txt")); String line; while ((line = br.readLine()) != null) { System.out.println(line); } } catch (IOException e) { e.printStackTrace(); } finally { if (br != null) { try { br.close(); } catch (IOException e) { e.printStackTrace(); } } } } }
3. Use java.util.Scanner
You can also use the Scanner class to read files.
java
import java.io.File; import java.io.FileNotFoundException; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = null; try { scanner = new Scanner(new File("path_to_your_file.txt")); while (scanner.hasNextLine()) { String line = scanner.nextLine(); System.out.println(line); } } catch (FileNotFoundException e) { e.printStackTrace(); } finally { if (scanner != null) { scanner.close(); } } } }
In all three examples, you need to " path_to_your_file.txt" with your file path. If the file is in your project directory, you can use the filename directly. Otherwise, you need to provide the full file path.
Note that these methods may throw IOException, so you need to use a try-catch block to handle possible exceptions. In the BufferedReader and Scanner examples, we also added finally blocks to ensure that the file stream is closed properly to avoid resource leaks.
The above is the detailed content of How to read file content in java. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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),

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft