XML parsing working fine with Android 2.2, 2.3 but not with ICS
问题 I am fetching the some data from the server using XML parsing that is not working with ICS version of Android.here is my please tell me what correction do I make so that I should also run on ICS...(It's working fine with lower versions). Here is my code try { URL url = new URL( "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(new InputSource(url.openStream())); doc