here is a useful tutorial on the subject, the author used to answer questions quickly back in the day not sure if he still does http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html
On Dec 31 2009, 11:38 pm, Yousuf Faheem <[email protected]> wrote: > Hi, > > Happy New Year to all. > I am trying to implement a SAX parser in my android application. > I placed my xml file in res/xml folder and declared my path as > "/res/xml/book.xml". > > SAXParserFactory spf = SAXParserFactory.newInstance(); > try { > > SAXParser sp = spf.newSAXParser(); > sp.parse("/res/xml/book.xml",this); > > }catch(SAXException se) { > se.printStackTrace(); > } > > still the application gives a file not found error. Any clue what going on > with the code. > > Thanks & Regards, > Yousuf Syed > 773-719-4786 -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

