I'm using Java with Xalan 2.7 to transform one XML to another.
Source is StreamSource(UTF-8 Reader);
Result is StreamResult(ByteArrayOutputStream)
Now my template is set to use UTF-8 (note the version 1.0):
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"
indent="yes"
omit-xml-declaration="yes"
encoding="UTF-8"/>
Now I want that output would have all special characters encoded. Something like 2.0 character map, so that € = &#euro; or hex equivalent.
How to do this with least effort?
htmlserialization method, characters outside encoding range might end up being encode with character references or HTML entities, but it's implementation dependant wich one is going to happen. – user357812 Mar 29 '11 at 18:32