gpt4 book ai didi

java 根据第一个单词查找文件中的特定行

转载 作者:行者123 更新时间:2023-11-30 07:46:46 26 4
gpt4 key购买 nike

我有一个正在导入的文件,我想要做的是询问用户的输入并将其用作查找要检查的正确行的基础。我的设置是这样的:

     public class ReadLines {
public static void main(String[] args) throws FileNotFoundException
{
File fileNames = new File("file.txt");
Scanner scnr = new Scanner(fileNames);
Scanner in = new Scanner(System.in);

int count = 0;
int lineNumber = 1;

System.out.print("Please enter a name to look up: ");
String newName = in.next();

while(scnr.hasNextLine()){
if(scnr.equals(newName))
{
String line = scnr.nextLine();
System.out.print(line);
}
}
}

现在,我只是想将其打印出来以查看我是否已捕获它,但这不起作用。有人有什么想法吗?另外,如果重要的话,我不能使用 try 和 catch 或数组。非常感谢!

最佳答案

您需要将该行缓存在局部变量中,以便稍后可以将其打印出来。像这样的事情应该可以解决问题:

while(scnr.hasNextLine()){
String temp = scnr.nextLine(); //Cache variable
if (temp.startsWith(newName)){ //Check if it matches
System.out.println(temp); //Print if match
}
}

希望这有帮助!

关于java 根据第一个单词查找文件中的特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33814910/

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