帮我写一段读取txt文件内容的Java代码
时间: 2023-08-28 22:54:11 浏览: 105
当然可以!以下是一个简单的Java代码示例,用于读取txt文件的内容:
```java
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class ReadTxtFile {
public static void main(String[] args) {
String filePath = "path/to/your/file.txt";
try {
BufferedReader reader = new BufferedReader(new FileReader(filePath));
String line;
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
reader.close();
} catch (IOException e) {
System.out.println("Error reading file: " + e.getMessage());
}
}
}
```
请将 `"path/to/your/file.txt"` 替换为你要读取的txt文件的实际路径。这段代码使用了 `BufferedReader` 来逐行读取文件内容,并将每行打印到控制台。
希望对你有帮助!如果你有其他问题,请随时提问。
阅读全文