0
ImサイトからRssを取得しています。 descriptionタグには、ユーザーに見せたい画像があります。私はこのコードを使用してmはそれを得るために:Rssから画像を取得する - それを行う最善の方法は?
public void setDescription(String description) {
this.description = description;
//parse description for any image or video links
if (description.contains("<img style=")){
String imgg = description.substring(description.indexOf("<img style="));
String cleanUp = imgg.substring(0, imgg.indexOf(">")+1);
imgg = imgg.substring(imgg.indexOf("src=") + 5);
int indexOf = imgg.indexOf("\"");
if (indexOf==-1){
indexOf = imgg.indexOf("\"");
}
imgg = imgg.substring(0, indexOf);
setImgLink(imgg);
this.description = this.description.replace(cleanUp, "");
} else{
String imgg2="replace_image.png";
setImgLink(imgg2);
}
}
私の問題は、RSSを取得し、サイトイムは、XMLで何かを変更した場合、イムは、私はimage.For例に取って代わるなっていることであるかの画像SRCにIMGのスタイルの変更またはこのようなものです。
それを修正し、説明からイメージを毎回入手する方法はありますか? 私は私がこのようなものを使用することができますが、私はそれがhttp://developer.android.com/reference/android/text/Html.html
感謝!:)
ノードのインポートとは何ですか?これは1つのインポートorg.w3c.dom.Nodeです。 – maverickosama92
使用するライブラリを指定してください。私はw3cノードで 'getAttribute'を見つけることができません。 –
'getAttribute(String)メソッドは、タイプNode'に対して未定義です –