Java读取txt文件
时间: 2023-07-18 20:07:45 浏览: 84
java读取txt文件
5星 · 资源好评率100%
可以使用Java中的File类和Scanner类来读取txt文件。代码如下:
```java
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ReadTxtFile {
public static void main(String[] args) {
File file = new File("file.txt");
try {
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
System.out.println(line);
}
scanner.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
```
其中,`File`类用于表示文件,通过传入文件路径创建一个文件对象。`Scanner`类用于扫描文件内容并读取每一行的字符串。使用`scanner.hasNextLine()`方法判断是否还有下一行,然后使用`scanner.nextLine()`方法读取每一行的字符串。最后记得关闭文件流。
阅读全文