Very similar to this question, except for Java.
What is the recommended way of encoding strings for an XML output in Java. The strings might contain characters like "&", "<", etc.
|
|
Very similar to this question, except for Java. What is the recommended way of encoding strings for an XML output in Java. The strings might contain characters like "&", "<", etc.
|
||
|
|
|
|
Very simply: use an XML library. That way it will actually be right instead of requiring detailed knowledge of bits of the XML spec. |
||||
|
|
|
This has worked well for me to provide an escaped version of a text string:
} |
||
|
|
|
|
Note: Your question is about escaping, not encoding. Escaping is using <, etc. to allow the parser to distinguish between "this is an XML command" and "this is some text". Encoding is the stuff you specify in the XML header (UTF-8, ISO-8859-1, etc). First of all, like everyone else said, use an XML library. XML looks simple but the encoding+escaping stuff is dark voodoo (which you'll notice as soon as you encounter umlauts and Japanese and other weird stuff like "full width digits" (FF11; is 1)). Keeping XML human readable is a Sisyphus' task. I suggest never to try to be clever about text encoding and escaping in XML. But don't let that stop you from trying; just remember when it bites you (and it will). That said, if you use only UTF-8, to make things more readable you can consider this strategy:
I'm using this in an SQL editor and it allows the developers to cut&paste SQL from a third party SQL tool into the XML without worrying about escaping. This works because the SQL can't contain umlauts in our case, so I'm safe. |
||
|
|
|
|
As others have mentioned, using an XML library is the easiest way. If you do want to escape yourself, you could look into |
||
|
|
|
Just use.
This will allow any characters except the ending
So you can include characters that would be illegal such as & and >. For example.
However, attributes will need to be escaped as CDATA blocks can not be used for them. |
||||
|
|
|
Use JAXP and forget about text handling it will be done for you automatically. |
||
|
|