| Author |
Disabling XML escaping.
|
Harvinder Kotli
Greenhorn
Joined: Dec 26, 2008
Posts: 5
|
|
How can I disable XML escaping for object of type org.w3c.dom.Document? e.g: & symbol should not be escaped to &
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Moving to our XML forum.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
The question doesn't make sense. The data in the DOM is in an internal form, where the concept of "escaping" doesn't apply. When you convert that internal form to an XML document (e.g. a text file), then you might want to not escape certain data. That conversion is called "serializing". So you are asking a question about the serializer that you will choose to use, whatever it is.
|
 |
 |
|
|
subject: Disabling XML escaping.
|
|
|