无法在页面中解析di p标记

时间:2014-01-24 17:35:03

标签: java android html-parsing jsoup

我无法解析此页面中的代码p:http://multiplayer.it/articoli/127739-thief-la-vendetta-di-garrett.html

我使用的代码是:

try {
    // String BLOG_URL_LINKS = links;
    Document doc = Jsoup.connect(links).get();
    Element info = doc.select("div.col-1-1 article p").first();
    System.out.println(info);
    // Log.d("Links", linkss.text());
} catch (Exception e) {
    // In caso di errore
    Log.e("ERROR", "Parsing error");
}

通过这种方式我解析了标签p,但是di em类是部分:Ci siamo tuffati nelle prime ore di gioco dell'attesissimo reboot di Thief,但我不需要那个标签p但是它具有页面的全部内容。哪里错了?

0 个答案:

没有答案