gpt4 book ai didi

java - 无法使用 Java 中的 Scanner 比较从 txt 文件读取的行

转载 作者:行者123 更新时间:2023-12-01 17:22:49 24 4
gpt4 key购买 nike

我正在尝试编写代码,该代码将从 txt 文件读取输入并在到达特定行后停止。

这是我当前的代码:

File data = new File("text.txt");
try {

Scanner load = new Scanner(data);

while (load.hasNextLine()) {
String line = load.nextLine();
if (line == "end") break;
System.out.println(line);
}

load.close();

} catch (FileNotFoundException e) {
System.out.println("File not found");
}

这是 text.txt 中包含的文本:

line1
line2
line3
end
line5
line6

我期望它只输出 end 行之前的行,但每一行都被打印出来。我该如何解决这个问题?

最佳答案

为了比较两个字符串,您应该使用 equals 而不是 == 运算符。就像line.equals("end")

下面的代码工作正常:

File data = new File("text.txt");
try {

Scanner load = new Scanner(data);

while (load.hasNextLine()) {
String line = load.nextLine();
if (line.equals("end")) break;
System.out.println(line);
}

load.close();

} catch (FileNotFoundException e) {
System.out.println("File not found");
}

关于java - 无法使用 Java 中的 Scanner 比较从 txt 文件读取的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61262636/

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