所以我试图搜索一个文本文件,如果找到用户输入,它返回整个句子,包括空格。但显然我只得到第一个字符串,没有任何东西传递句子中的第一个字符串。例如,如果我有一个名为“data.txt”的文本文件,第一行中的内容是“我是一个传奇”。用户输入“我是传奇”后,搜索文件后的输出为“I”。任何帮助将不胜感激。
public static void Findstr() { // This function searches the text for the string
File file = new File("data.txt");
Scanner kb = new Scanner(System.in);
System.out.println(" enter the content you looking for");
String name = kb.next();
Scanner scanner;
try {
scanner = new Scanner(file).useDelimiter( ",");
while (scanner.hasNext()) {
final String lineFromFile = scanner.nextLine();
if (lineFromFile.contains(name)) {
// a match!
System.out.println("I found " + name);
break;
}
}
} catch (IOException e) {
System.out.println(" cannot write to file " + file.toString());
}
答案 0 :(得分:2)
package com.example;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class FileSearch {
public void parseFile(String fileName,String searchStr) throws FileNotFoundException{
Scanner scan = new Scanner(new File(fileName));
while(scan.hasNext()){
String line = scan.nextLine().toLowerCase().toString();
if(line.contains(searchStr)){
System.out.println(line);
}
}
}
public static void main(String[] args) throws FileNotFoundException{
FileSearch fileSearch = new FileSearch();
fileSearch.parseFile("src/main/resources/test.txt", "am");
}
}
test.txt contains:
I am a legend
Hello World
I am Ironman
Output:
i am a legend
i am ironman
以上代码执行不区分大小写的搜索。您应该使用nextLine()来获取完整的行。 next()在空格上打破。
参考: http://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#next()
答案 1 :(得分:0)
Scanner.next();
返回下一个字符,而不是使用Scanner.readLine();
编辑:
相信扫描仪使用.nextLine();
而非.readLine();
答案 2 :(得分:0)
当您扫描输入时..
Scanner kb = new Scanner(System.in);
System.out.println(" enter the content you looking for");
String name = kb.next();
您只接受一个令牌。您应该使用kb.nextLine()