gpt4 book ai didi

java - 使用eclipse逐行读取文本文件java

转载 作者:行者123 更新时间:2023-12-02 02:55:44 24 4
gpt4 key购买 nike

代码:

    try {
FileReader reader = new FileReader("rn.txt");
BufferedReader bufferedReader = new BufferedReader(reader);

String line;

while ((line = bufferedReader.readLine()) != null) {
System.out.println(line);
}
reader.close();

} catch (IOException e) {
e.printStackTrace();
}

rn.txt 文件内容:

12
45
78
23
45

控制台输出:

0
/
N
K
M
^

.
:
P
/
G
0

?


8
W
3

问题:如何读取.txt 文件中的实际数据?我写的代码有问题吗?

编辑:

this my console output and where i put my txt file

最佳答案

您的代码工作得很好,请检查您的 .txt 文件是否位于正确的位置,并且您没有重复的 .txt 文件。

使用您的代码输出:

run:
12
45
78
23
45
BUILD SUCCESSFUL (total time: 0 seconds)

关于java - 使用eclipse逐行读取文本文件java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43121173/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com