[android-developers] Re: How can I show the escape characters of a xml file in my app

2009-04-02 Thread Evgeny V
May be it will help you. http://www.fileformat.info/info/unicode/char/search.htm The ' (quote) sign I replaced by \u0027 and it works. Thanks, Evgeny On Thu, Apr 2, 2009 at 9:18 AM, manoj wrote: > > Here is some example.xml: > > "Manoj" > "10th" > "male"

[android-developers] Re: How can I show the escape characters of a xml file in my app

2009-04-02 Thread Mark Murphy
manoj wrote: > Hi I am writing an application which reads the xml data and just > prints it. > > The xml data consists of some escape sequence characters like &," ... > > I am using DOM parser for this. > > When trying to print the data, I am not able to get the original data. That is because

[android-developers] Re: How can I show the escape characters of a xml file in my app

2009-04-01 Thread manoj
Here is some example.xml: "Manoj" "10th" "male" ... The name field contains ' " ' ("Manoj" as shown in the above example). When I was parsing it using the DOM parser as shown in the previous mail, I am getting only " instead of "Manoj". Not complete strin