First of all I want to mention that this is not a duplicate of How to parse invalid (bad / not well-formed) XML? because I don't have a given invalid (or not well-formed) XML file but rather a given arbitrary Java String
which may or may not contain an invalid XML character. I want to create a DOM Document
containing a Text
node with the given String
, then transform it to a file. When the file is parsed to a DOM Document
I want to get a String
which is equal to the initial given String
. I create the Text
node with org.w3c.dom.Document#createTextNode(String data)
and I get the String with org.w3c.dom.Node#getTextContent()
.
As you can see in https://stackoverflow.com/a/28152666/3882565 there are some invalid characters for Text
nodes in a XML file. Actually there are two different types of "invalid" characters for Text
nodes. There are predefined entities such as "
, &
, '
, <
and >
which are automatically escaped by the DOM API with "
, &
, '
, <
and >
in the resulting file which is undone by the DOM API when the file is parsed. Now the problem is that this is not the case for other invalid characters such as '\u0000'
or '\uffff'
. An exception occurs when parsing the file because '\u0000'
and '\uffff'
are invalid characters.
Probably I have to implement a method which escapes those characters in the given String
in a unique way before submitting it to the DOM API and undo that later when I get the String
back, right? Is there a better way to do this? Did someone implement those or similar methods in the past?
Edit: This question was marked as duplicate of Best way to encode text data for XML in Java?. I have now read all of the answers but none of them solves my problem. All of the answers suggest:
- Using a XML library such as the DOM API which I already do and none of those libraries actually replaces invalid characters except
"
,&
,'
,<
,>
and a few more. - Replacing all invalid characters by
"&#number;"
which results in an exception for invalid characters such as"�"
when parsing the file. - Using a third party library with an XML encode method which do not support illegal characters such as
"�"
(they are skipped in some libraries). - Using a CDATA section which doesn't support invalid characters either.
I think the simplest solution is using XML 1.1 (supported by
org.w3c.dom
) by using this preprocessor:<?xml version=1.1 encoding=UTF-8 standalone=yes?>
According to Wikipedia the only invalid characters in XML 1.1 are U+0000, surrogates, U+FFFE and U+FFFF
This code snippet ensures you always get a correct XML 1.1 string, omitting illegal chars (might not be what you looks for though if you need the exact same string back):
One technique is to encode the whole string as Base64-encoded-UTF8.
But if the "special" characters are rare, that's a significant sacrifice in readability and file size.
Another technique is to represent special characters as processing instructions, for example
<?U 0000?>
for codepoint 0.Another would be to use backslash escaping, for example \u0000 for codepoint 0, and of course \ for backslash itself. This has the advantage that you can probably find existing library routines that do this for you (for example JSON conversion libraries). I can't imagine why your requirements say you can't use such libraries; but if you really can't, then it's not hard to write the code yourself.
As @VGR and @kjhughes have pointed out in the comments below the question, Base64 is indeed a possible answer to my question. I do now have a further solution for my problem, which is based on escaping. I have written 2 functions
escapeInvalidXmlCharacters(String string)
andunescapeInvalidXmlCharacters(String string)
which can be used in the following way.escapeInvalidXmlCharacters(String string)
andunescapeInvalidXmlCharacters(String string)
:Note that these functions are probably very inefficient and can be written in a better way. Feel free to post suggestions to improve the code in the comments.