vote up 1 vote down star

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.

flag

6 Answers

vote up 7 vote down check

Very simply: use an XML library. That way it will actually be right instead of requiring detailed knowledge of bits of the XML spec.

link|flag
Can you recommend such a library? (I find it surprising that this is not a standard part of Java edition 5...such a common task). – Tim Cooper Nov 16 at 6:23
XML is part of the standard Java framework - look in org.w3c.sax and org.w3c.dom. However, there are some easier-to-use framework around as well, such as JDom. Note that there may not be an "encoding strings for XML output" method - I was more recommending that the whole XML task should be done with a library rather than just doing bits at a time with string manipulation. – Jon Skeet Nov 16 at 6:28
vote up 1 vote down

This has worked well for me to provide an escaped version of a text string:

public class XMLHelper {

/**
 * Returns the string where all non-ascii and <, &, > are encoded as numeric entities. I.e. "&lt;A &amp; B &gt;"
 * .... (insert result here). The result is safe to include anywhere in a text field in an XML-string. If there was
 * no characters to protect, the original string is returned.
 * 
 * @param originalUnprotectedString
 *            original string which may contain characters either reserved in XML or with different representation
 *            in different encodings (like 8859-1 and UFT-8)
 * @return
 */
public static String protectSpecialCharacters(String originalUnprotectedString) {
	if (originalUnprotectedString == null) {
		return null;
	}
	boolean anyCharactersProtected = false;

	StringBuffer stringBuffer = new StringBuffer();
	for (int i = 0; i < originalUnprotectedString.length(); i++) {
		char ch = originalUnprotectedString.charAt(i);

		boolean controlCharacter = ch < 32;
		boolean unicodeButNotAscii = ch > 126;
		boolean characterWithSpecialMeaningInXML = ch == '<' || ch == '&' || ch == '>';

		if (characterWithSpecialMeaningInXML || unicodeButNotAscii || controlCharacter) {
			stringBuffer.append("&#" + (int) ch + ";");
			anyCharactersProtected = true;
		} else {
			stringBuffer.append(ch);
		}
	}
	if (anyCharactersProtected == false) {
		return originalUnprotectedString;
	}

	return stringBuffer.toString();
}

}

link|flag
vote up 0 vote down

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:

  • If the text does contain '<', '>' or '&', wrap it in <![CDATA[ ... ]]>
  • If the text doesn't contain these three characters, don't warp it.

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.

link|flag
vote up 1 vote down

As others have mentioned, using an XML library is the easiest way. If you do want to escape yourself, you could look into StringEscapeUtils from the Apache Commons Lang library.

link|flag
This could be the way to go if you don't care about absolute correctness, for example if you are putting together a prototype. – Chase Seibert Jan 13 at 18:32
vote up 3 vote down

Just use.

<![CDATA[ your text here ]]>

This will allow any characters except the ending

]]>

So you can include characters that would be illegal such as & and >. For example.

<element><![CDATA[ characters such as & and > are allowed ]]></element>

However, attributes will need to be escaped as CDATA blocks can not be used for them.

link|flag
1  
In most cases, that is not what you should do. Too many people abuse the CDATA tags. The intent of the CDATA is to tell the processor not to process it as XML and just pass it through. If you are trying to create an XML file, then you should be creating XML, not just passing bytes through some wrapping element. – Mads Hansen May 16 at 16:05
vote up 1 vote down

Use JAXP and forget about text handling it will be done for you automatically.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.