写一段java代码读取txt文档并输出
时间: 2023-06-02 15:05:07 浏览: 135
java读取txt文件并输出结果
5星 · 资源好评率100%
好的,以下是读取txt文档并输出的Java代码:
```java
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ReadTextFile {
public static void main(String[] args) {
try {
// 文件路径
String filePath = "C:/example.txt";
// 创建文件对象
File file = new File(filePath);
// 创建 Scanner 对象读取文件内容
Scanner scanner = new Scanner(file);
// 读取文件内容并输出
while (scanner.hasNextLine()) {
System.out.println(scanner.nextLine());
}
// 关闭文件读取器
scanner.close();
} catch (FileNotFoundException e) {
System.out.println("文件不存在!");
e.printStackTrace();
}
}
}
```
请注意,此代码假定读取的文本文件是英文文本格式。如果读取的文本文件格式为其他语言,需要指定相应的编码方式,例如在 `Scanner` 的构造函数中添加编码方式参数: `new Scanner(file, "UTF-8")`。
阅读全文