RSS Reader Sorunu ACİL!!
Merhabalar, http://servis.chip.com.tr/chiponline.xml bu rss'den [code]<enclosure url="http://media.chip.com.tr/images/thumb/128/2013123116565320346.jpg" length="6163" type="image/jpg"/>[/code]
kısmındaki jpg linkini androidde nasıl parse edebilirim? Bazı yollar denedim ama çalıştıramadım.
[code]
public ArrayList<String> getResimFromXml(String strng) {
ArrayList<String> list=new ArrayList<String>();
try {
URL url=new URL(strng);
DocumentBuilderFactory dFactory=DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder=dFactory.newDocumentBuilder();
Document document=dBuilder.parse(new InputSource(url.openStream()));
document.getDocumentElement().normalize();
NodeList nodeListCountry=document.getElementsByTagName("item");
for (int i = 0; i < nodeListCountry.getLength(); i++) {
Node node=nodeListCountry.item(i);
Element elementMain=(Element) node;
NodeList nodeListicon = elementMain.getElementsByTagName("enclosure");
Element elementicon = (Element) nodeListicon.item(0);
String resimurl = elementicon.getAttribute("url");
list.add(elementicon.getChildNodes().item(0).getNodeValue());
}
} catch (MalformedURLException e) {
e.printStackTrace();
}catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return list;
}
[/code]
şu şekilde bir şey deniyim dedim, ama olmadı.
RSS'den nasıl resim yolunu çekebilriz?