1

我在解析此 html 时遇到问题:

    <div class="big-photo report-photo"> 
    <img alt="Europa" src="/media/asset_publics/resources/000/004/121/news_landscape/europa.jpg?1339265409" />

和我的代码:

    Element img = doc.select("div[class=big-photo report-photo] img").first();

我成功地将 jsoup 与 html 连接,但 img 为空,我做错了什么?

4

1 回答 1

0

String url = img.attr("src");在您的代码之后添加。祝你好运

于 2015-11-24T20:52:46.210 回答