良い一日、
Jsoup を使用して画像を取得しようとしていますが、Web サイトから正確に何を取得すればよいかわかりません。次のコードを使用して Web サイトから読み取り、特定のタイトルの画像とリンク先の URL を取得できましたが、画像は取得できませんでした。
ImageView
この画像をアクティビティにあるに設定したいと思います。これまでの私のコードは次のとおりです。
// Get the required stuff from the webpage
Document document = null;
try {
document = Jsoup.connect(URL).get();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Element info = document.select("div.featurebox").first();
// Caption on image
docInfo = info.text();
// URL of image
imageURL = info.attr("data-url");
// Retrieve the actual image
Element featureImage = document.select("div.featurebox-image").first();
// Unsure what to get here
画像は通常の方法で保存されないことに注意してくださいimg-src
。div
私が見ている特定のクラスはこれです:
<div class="featurebox-image" style="background:url(http://img.mangastream.com/cdn/feature/02.jpg) center center;">
<div class="featurebox-caption">
<strong>History's Strongest Disciple Kenichi <em>544</em></strong> - Witch </div>
</div>
だから私はそのURLから実際の画像を求めています。
どうすればいいですか?
ありがとう