所以我正在使用 JSoup 从页面中获取一个大的元素列表。当我说大时,我的意思是几百个元素。我知道这些元素在那里,因为我将它们全部转换为一个巨大的字符串并且它们都被列出了。现在我需要做的是将它们放入一个数组中,这样我就可以一个一个地处理它们。这是我当前的代码:
public static String [] grabWordList(String ending) throws IOException, InterruptedException{
Document doc = Jsoup.connect("http://site.com/").get();
Elements links = doc.getElementsByClass("defLink"); //Get words from site
String s[] = new String[links.size()]; //Create an array
int i = 0;
for(Element el : links){ //Attempt to put them into an array using this loop of blindly coppy and pasted code (I know, HORRIBLE Idea, I dont usually do that, but I am lost)
s[i++] = el.attr("links");
}
return s;
}
当我这样做时,我使用此代码尝试获取数组并打印它:
String words[] = Methods.grabWordList("in");
for(int j=0; j < words.length; j++){
System.out.println(words[j]);
}
运行此代码时,打印出来的只是[Ljava.lang.String;@6201dbc
我希望有人能提供帮助。谢谢!