溫馨提示×

java怎么獲取txt文件內容

小億
156
2023-12-09 12:01:35
欄目: 編程語言

在Java中,你可以使用FileScanner類來讀取txt文件的內容。

首先,你需要使用File類來指定要讀取的txt文件的路徑。然后,使用Scanner類來讀取該文件的內容。

下面是一個示例代碼:

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class ReadTxtFile {
    public static void main(String[] args) {
        // 指定要讀取的txt文件路徑
        String filePath = "path/to/your/file.txt";
        
        try {
            // 創(chuàng)建一個File對象
            File file = new File(filePath);
            
            // 創(chuàng)建一個Scanner對象來讀取文件內容
            Scanner scanner = new Scanner(file);
            
            // 逐行讀取文件內容并輸出
            while (scanner.hasNextLine()) {
                String line = scanner.nextLine();
                System.out.println(line);
            }
            
            // 關閉Scanner對象
            scanner.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }
}

請將"path/to/your/file.txt"替換為你實際的txt文件的路徑。執(zhí)行該代碼后,將會逐行輸出txt文件的內容。

0