要讀取一個txt文件中的內容,可以使用Java中的File類和Scanner類。下面是一個簡單的示例代碼:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ReadFile {
public static void main(String[] args) {
try {
File file = new File("file.txt");
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
System.out.println(line);
}
scanner.close();
} catch (FileNotFoundException e) {
System.err.println("文件未找到");
}
}
}
在上面的代碼中,首先創建一個File對象來表示要讀取的txt文件,然后創建一個Scanner對象來讀取文件內容。使用while循環來逐行讀取文件內容,并打印出來。最后別忘了關閉Scanner對象。