我可以对我正在处理的代码的一部分使用一些帮助。我做了一个方法,我认为将 .txt 文件的每一行都转换为数组中的单独元素。但是,我现在希望能够在它们中搜索并使程序打印整个元素。即:其中一行内容为:Crow,M,Kansas,june2012 我想我能够将它变成一个数组。现在,我希望能够搜索“crow”,并能够将其中包含该单词的所有元素与元素中字符串的其余部分一起打印。我到目前为止的代码: System.out.println("Her kan du soke etter registrerigner etter fugletype");
try {
Scanner sc = new Scanner(new File("fugler.txt"));
List<String> lines = new ArrayList<String>();
while (sc.hasNextLine()) {
lines.add(sc.nextLine());
}
String[] arr = lines.toArray(new String[lines.size]);
}catch (Exception e) {
}