亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
革吉县| 托克逊县| 连云港市| 菏泽市| 晋城| 永宁县| 封开县| 巴楚县| 宜兰市| 玛纳斯县| 盐亭县| 徐水县| 内江市| 玉门市| 河间市| 阳新县| 临沧市| 萨嘎县| 和龙市| 始兴县| 广丰县| 鹿邑县| 莲花县| 慈利县| 浙江省| 常德市| 黑山县| 鄂托克旗| 宣城市| 漳平市| 甘南县| 洞头县| 西吉县| 芜湖市| 德惠市| 壤塘县| 揭东县| 高邑县| 通许县| 永登县| 大方县|