I used XStream to generate XML from
Java object. Some values in the XML contain quotes(") for e.g. <name>"""Manas "" Sahu""</name>.
I set response.setContentType(application/xml) in my
servlet.
While opening this XML file in IE it is displaying correctly as
<name>"""Manas "" Sahu""</name>
but if I save that file as XML and open that file in a notepad or Editplus it displays the value as
<name>"""Manas "" Sahu""</name>.
So my need is while opening in any editor it should display " in place of ". So could i be able to this please suggest.
Thanks in advance.