我只需要从网页http://www.informatik.uni-trier.de/~ley/pers/hd/r/Rao:Rahul.html中提取那些出版物,其中第一作者是 Rahul Rao。
我已经尝试了以下代码,但它没有给我任何输出。
for( Element element : doc.select("table span.this-person.title") ){
System.out.println(element.text());
}
我需要什么才能获得首选输出?先感谢您。