我有一个有效 URL 的内置检查。我已经插入了我的检查部分。该程序是读取排名列表,然后打印/排序/搜索。代码的第一部分是我对有效 URL 的检查,第二部分是将其插入到 arrayList。如果我输入网址:https://www.ssa.gov/cgi-bin/popularnames.cgi我收到以下错误:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
at rankings.RankMenu.toArrayList(RankMenu.java:160)
at rankings.RankMenu.menu(RankMenu.java:84)
at rankings.Rankings.main(Rankings.java:16)
Java Result: 1
第 160 行是:
String test2 = temp[element];
将字符串传递给ArrayList 的代码是:
Scanner read = new Scanner(text.openStream());
while(count < 25){
output = read.nextLine();
如何检查 URL 以防止这种情况发生或调整将文件插入 arrayList 的代码?这个项目总共有 223 行代码,仅在菜单中,所以除非需要帮助,否则我将全部发布。谢谢你。
public boolean isValidURL(String url){
try{
java.net.URL file = new java.net.URL(url);
this.text = file;
return true;
} catch (java.net.MalformedURLException ex) {
return false;
} catch (java.io.IOException ex){
return false;
}
}
public void toArrayList(String string, int rank, int element){
String[] temp = string.split("\\s+");
String test = temp[rank];
String test2 = temp[element];
String[] newTemp = new String[temp.length - 2];
int cnt2 = 0;
for(int cnt = 0; cnt < temp.length; cnt++){
if(temp[cnt] != temp[rank] && temp[cnt] != temp[element]){
newTemp[cnt2] = temp[cnt];
cnt2++;
}
}
String test3 = Arrays.toString(newTemp);
textList.add(new Type(test, test2, test3));
}