I want to extract attributes from an xml file using Sax Parser
I am able to extract all the tags except those which has a semicolon in it
For example
<geo:lat>-9.9</geo:lat>
Whether there is any way to extract date from these tag?
‘
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
geo is predefine parameter,you can directly mach tag in startelement and EndElement method of your SAX parser handler file.
i also face this kind of problem.