how to do sax xml parsing in android
I have done one program in android using xml
parsing but there is an error开发者_开发技巧 please solve this problem and explain how to use the xml
parsing in android:
String response = rc.getResponse();
Log.e("Response ", response);
SAXParserFactory spf = SAXParserFactory.newInstance();
SAXParser sp = spf.newSAXParser();
XMLReader xr = sp.getXMLReader();
LoginHandler myLoginHandler = new LoginHandler();
xr.parse(retrieveInputStream( response));
xr.parse(new InputSource(rc.openStream()));
See this post and my reply: How to draw a path on a map using kml file?
The second code snippet of the NavigationSaxHandler gives you an example how to use the sax parser.
精彩评论