大家好,我一直遇到 Jsoup 问题,我基本上是在尝试从该站点获取(解析)信息到我的应用程序 http://websemantics.co.uk/tutorials/accessibility_workshop/sessions/session2/03.data_tables/01。 simple_data_tables/
我想将 Number of Candidates 列提取到生物数学、科学等的单独字符串中,并将值解析并附加到字符串中。我该怎么做,你能给出一个示例代码吗?
我对此的看法是:
//Get The Site and Parse it
Document doc = Jsoup.connect("http://websemantics.co.uk/tutorials/accessibility_workshop/sessions/session2/03.data_tables/01.simple_data_tables/").get();
//Select Table
Element table = doc.select("table").first();
Iterator<Element> iterator = table.select("td").iterator();
while(iterator.hasNext()){
System.out.println("text : "+iterator.next().text());
String Math = text();
我尝试了一种不同的方式,但没有提供任何东西
Element table = doc.select("table").first();
Iterator<Element> iterator = table.select("td").iterator();
while(iterator.hasNext()){
Element row1 = table.select( "td:eq(1)").first();
String rowno1 = row1.text();
Element row2= table.select( "td:eq(1)").first();
String rowno2 = row2.text();
我不知道如何进一步解决这个问题,你能解释一下我做错了什么吗?
谢谢你