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. |
|||||||||||||||||||
|
|
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. |
|||||||||||
|
|
This has worked well for me to provide an escaped version of a text string:
|
|||||||
|
|
Use I use it in App Engine application - work like a charm. Here is the Java Doc for this function: |
|||
|
|
|
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. |
|||
|
|
|
While idealism says use an XML library, IMHO if you have a basic idea of XML then common sense and performance says template it all the way. It's arguably more readable too. Though using the escaping routines of a library is probably a good idea. Consider this: XML was meant to be written by humans. Use libraries for generating XML when having your XML as an "object" better models your problem. For example, if pluggable modules participate in the process of building this XML. Edit: as for how to actually escape XML in templates, use of CDATA or
|
||||
|
|
|
The behavior of StringEscapeUtils.escapeXml() has changed from Commons Lang 2.5 to 3.0. It now no longer escapes Unicode characters greater than 0x7f. This is a good thing, the old method was to be a bit to eager to escape entities that could just be inserted into a utf8 document. The new escapers to be included in Google Guava 11.0 also seem promising: http://code.google.com/p/guava-libraries/issues/detail?id=799 |
|||
|
|
Try this:
|
|||||||||||
|
|
To escape XML characters, the easiest way is to use the Apache Commons Lang project, JAR downloadable from: http://commons.apache.org/lang/ The class is this: org.apache.commons.lang3.StringEscapeUtils; It has a method named "escapeXml", that will return an appropriately escaped String. |
|||
|
|
|
To escape control characters with Apache commons-lang, use
|
|||
|
|
|
Here's an easy solution and it's great for encoding accented characters too!
Outputs
|
|||
|
|