91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java如何獲取txt文本內容

小億
259
2024-04-11 19:12:05
欄目: 編程語言

在Java中獲取txt文本內容的常用方法有兩種:

  1. 使用Java I/O類讀取文本文件內容:
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

public class ReadTxtFile {
    public static void main(String[] args) {
        String fileName = "example.txt";
        try (BufferedReader br = new BufferedReader(new FileReader(fileName))) {
            String line;
            while ((line = br.readLine()) != null) {
                System.out.println(line);
            }
        } catch (IOException e) {
            System.err.println("Error reading file: " + e.getMessage());
        }
    }
}
  1. 使用Apache Commons IO庫讀取文本文件內容:

首先需要導入Apache Commons IO庫的依賴:

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.8.0</version>
</dependency>

然后使用以下代碼讀取文本文件內容:

import org.apache.commons.io.FileUtils;

import java.io.File;
import java.io.IOException;

public class ReadTxtFile {
    public static void main(String[] args) {
        String fileName = "example.txt";
        try {
            String content = FileUtils.readFileToString(new File(fileName), "UTF-8");
            System.out.println(content);
        } catch (IOException e) {
            System.err.println("Error reading file: " + e.getMessage());
        }
    }
}

以上兩種方法都可以用來讀取txt文本文件的內容,并輸出到控制臺或者進行其他操作。需要注意的是,讀取文件時需要確保文件存在并且有讀取權限。

0
高邮市| 泊头市| 越西县| 文水县| 应用必备| 通化县| 布尔津县| 彰武县| 邻水| 开化县| 延川县| 新干县| 油尖旺区| 延津县| 安泽县| 定南县| 重庆市| 开原市| 阿尔山市| 桂阳县| 团风县| 茂名市| 襄樊市| 怀宁县| 富阳市| 黄浦区| 金寨县| 汉沽区| 德格县| 赤水市| 济南市| 喀喇沁旗| 曲沃县| 尼勒克县| 青川县| 溆浦县| 凤城市| 雅江县| 江阴市| 江口县| 阳泉市|