My objective is to emulate (implement a superset of) result-document with an extension function in Java. I am using Java's built-in Xalan processor.
I want to serialize a tree fragment to a string and pass it to a java method.
A related question is here.
XML
<?xml version="1.0"?>
<a>
<b c="d"/>
<b c="d"/>
<b c="d"/>
</a>
XSL
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="foo">
<xsl:param name="content"></xsl:param>
<!-- <xsl:copy-of select="$content"></xsl:copy-of> -->
<!-- copy-of produces the expected string here, but how to pass to someMethod as a string -->
<!-- serialize node to string first as per Michael Kay in the related question -->
<xsl:value-of select="java:someMethod(java:serialize($content))" />
</xsl:template>
<xsl:template match="/">
<xsl:call-template name="foo">
<xsl:with-param name="content">
<xsl:for-each select="a/b">
<e>
<xsl:value-of select="@c" />
</e>
</xsl:for-each>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>
Desired String to be passed to Java extension function someMethod
<e>d</e>
<e>d</e>
<e>d</e>
Java
public static String someMethod(String str);
public static String serialize(Object obj)
{
SAXImpl impl = (SAXImpl) obj;
int length = impl.getSize();
StringBuilder builder = new StringBuilder();
DTMAxisIterator iter = impl.getIterator();
for (int i = 0; i < length; ++i)
{
int nodeId = iter.getNodeByPosition(i);
Node node = impl.getNode(nodeId);
sb.append(transform(node)); // DOM to String.
}
return sb.toString();
}
My questions are:
Is this a correct approach to serialize a node to string? Seemingly works, but I am suspicious.
Is there a better way or a built-in way to do this?