I'm trying to apply a transform with java (currentXSLT.transform(xmlFile, outputFile);) But I'm getting escaped text. I need the characters that are being scaped, from the text of the XML.
So far I have tried with this:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="xml" indent="no" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()">
<xsl:copy>
<xsl:value-of select="." disable-output-escaping="yes"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
But it doesn't seem to work.
Any ideas?
Thanks.
<lastName>Johnson & Johnson</lastName>should give<lastName>Johnson & Johnson</lastName>which is going to be inserted into a database that has already Johnson & Johnson to compare. – StrayChild01 Jul 3 '12 at 19:33<lastName>Johnson & Johnson</lastName>which is not well formed so will just be a fatal error when read by any XML system? If you database has the string "Johnson & Johnson" then to put that string in XML you need Johnson & Johnson – David Carlisle Jul 3 '12 at 19:44