正如我的标题所说。我需要在文件中搜索字符串。找到后,我需要下一行。这是一个像这样的文件:
你好
世界
当找到“hello”时,需要返回“world”。
File file = new File("testfile");
Scanner scanner = null;
try {
scanner = new Scanner(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
if (scanner != null) {
String line;
while (scanner.hasNextLine()) {
line = scanner.nextLine();
if (line == "hello") {
line = scanner.nextLine();
System.out.println(line);
}
}
}
它通读文件,但没有找到“你好”这个词。