当我运行代码时,它会出错
java.lang.ArrayIndexOutOfBoundsException: 0
at SearchFile.main(SearchFile.java:28)
MyNote.txt是保存在计算机D目录中的文本文件。 而" ad"是该文本文件中的单词。
import java.io.*;
public class SearchFile {
public static void main(String args[]) {
args[0] = "ad";
if (args.length > 0) {
String searchword = args[0];
try {
int LineCount = 0;
String line = "";
BufferedReader bReader = new BufferedReader(new FileReader("D:/MyNote.txt"));
while ((line = bReader.readLine()) != null) {
LineCount++;
int posFound = line.indexOf(searchword);
if (posFound > - 1) {
System.out.println("Search word found at position " + posFound + " on line " + LineCount);
}
}
bReader.close();
}
catch (IOException e) {
System.out.println("Error: " + e.toString());
}
}
else {
System.out.println("Please provide a word to search the file for.");
}
}
}
我不知道错误是什么或我做错了什么。 我是新来的,实际上请帮助!! 谢谢你
答案 0 :(得分:0)
问题是您的args[]
为空,并且在您的应用程序启动时没有大小。在这种情况下,不存在索引0
,并且您的args[0] = "ad";
行失败。
尝试使用参数启动应用程序,而不是尝试在代码中手动设置它。如果您没有看到任何其他解决方案,请自行创建一个数组并将其设置为填充了您要使用的信息的变量。
答案 1 :(得分:0)
使用另一个变量而不是args[0]
:
String str = "ad";
if (str.length() > 0) {
String searchword = str;
变量args[0]
通过main方法用作类的输入。此外,由于没有给出任何论据,因此它是空的。