i use this code to parse xml on J2SE but it doesn't work with android SDK
try {
URL url = new URL("http://site.com/file.xml");
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(url.openStream());
NodeList nodeList = doc.getElementsByTagName("item");
for (int i = 1; i < nodeList.getLength(); i++) {
Element element = (Element)nodeList.item(i);
System.out.println(element.getFirstChild().getNodeValue());
}
} catch (ParserConfigurationException parserConfigurationException) {
} catch (SAXException sAXException) {
} catch (IOException iOException) {
}
when i try to put the value in String the value always = Null !! what is wrong ???
P.S : the app has Internet permission
exception.printStackTracein your threecatchcode bolck, to check it has some exception happen. – idiottiger Apr 13 '12 at 1:55