Reading Xml Response In Android
I'm trying to read and the XML response from the following url http://sagt.vizushop.com/DefaultSimple.aspx?command=default I use the following code in my android project to ge
Solution 1:
Please Use below code for XML parsing using Dom Parser.
publicclassXMLParsingDOMExampleextendsActivity {
@OverridepublicvoidonCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/** Create a new layout to display the view */LinearLayoutlayout=newLinearLayout(this);
layout.setOrientation(1);
/** Create a new textview array to display the results */
TextView id[];
TextView imageurl[];
try {
URLurl=newURL("http://sagt.vizushop.com/DefaultSimple.aspx?command=default");
DocumentBuilderFactorydbf= DocumentBuilderFactory.newInstance();
DocumentBuilderdb= dbf.newDocumentBuilder();
Documentdoc= db.parse(newInputSource(url.openStream()));
doc.getDocumentElement().normalize();
NodeListnodeList= doc.getElementsByTagName("item");
/** Assign textview array lenght by arraylist size */
id = newTextView[nodeList.getLength()];
imageurl = newTextView[nodeList.getLength()];
for (inti=0; i < nodeList.getLength(); i++) {
Nodenode= nodeList.item(i);
id[i] = newTextView(this);
imageurl[i] = newTextView(this);
ElementfstElmnt= (Element) node;
NodeListidList= fstElmnt.getElementsByTagName("item_id");
ElementidElement= (Element) idList.item(0);
idList = idElement.getChildNodes();
id[i].setText("id is = " + ((Node) idList.item(0)).getNodeValue());
NodeListimageurlList= fstElmnt.getElementsByTagName("item_image");
ElementimageurlElement= (Element) imageurlList.item(0);
imageurlList = imageurlElement.getChildNodes();
imageurl[i].setText("imageurl is = " + ((Node) imageurlList.item(0)).getNodeValue());
layout.addView(id[i]);
layout.addView(imageurl[i]);
}
} catch (Exception e) {
System.out.println("XML Pasing Excpetion = " + e);
}
/** Set the layout view to display */
setContentView(layout);
}
}
And See below link for more information.
Post a Comment for "Reading Xml Response In Android"