在Java中,你可以使用File
和Scanner
類來讀取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文件的內容。