> but while parsing the xml data i am getting some attribute values like > > Español" > België (nl) > > How to get the original values by avoid these symbols > currently i am using > <?xml version="1.0" encoding="ISO-8859-1"?> > at the top of the xml file > > is it correct or i need to do more ???
It depends on whether the encoding is really ISO-8859-1. Perhaps it's in UTF-8? You might try just removing the encoding=, just remove the whole <?xml .. ?> line. Most XML parsers are pretty good at figuring out the encoding. -Tim --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

