如何解决从java中的String处理XSLT Source时,使用键进行XSLT查找
|| 我正在尝试处理XSLT查找-经过某些修改后,将输入XSLT作为字符串而不是文件。如果将修改后的XSLT作为文件编写并再次读取以进行转换,则一切工作都很好,但是当我将其作为String处理时,查找将无法正常工作。 进行转换的方法如下。 public static void transform(File inputXmlfile,String outputXmlFileName) throws ParserConfigurationException,SAXException,IOException,TransformerException {
DocumentBuilderFactory docBuildFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder parser = docBuildFactory.newDocumentBuilder();
Document document = parser.parse(inputXmlfile);
TransformerFactory xformFactory = TransformerFactory.newInstance();
String xsltString=\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\"?>\"+
\"<xsl:stylesheet version=\\\"1.0\\\"\"+
\" xmlns:xsl=\\\"http://www.w3.org/1999/XSL/Transform\\\" xmlns:c=\\\"http://myDomain.com/classifications.data\\\">\"+
\"<xsl:output method=\\\"xml\\\" />\"+
\"<xsl:key name=\\\"classification-lookup\\\" match=\\\"c:classification\\\" use=\\\"c:id\\\" /> <xsl:template match=\\\"/\\\"><listings xmlns:xsi=\\\"http://www.w3.org/2001/XMLSchema-instance\\\" xsi:noNamespaceSchemaLocation=\\\"http://local.google.com/local_Feed.xsd\\\"><language>en</language><datum>wgs84</datum>\" +
\"<xsl:for-each select=\\\"BusinessListings/BusinessListing\\\"><listing><id><xsl:value-of select=\\\"id\\\" /></id><xsl:apply-templates /></listing></xsl:for-each></listings></xsl:template><xsl:template match=\\\"classificationId\\\"><xsl:variable name=\\\"currentId\\\" select=\\\".\\\" />\" +
\"<xsl:for-each select=\\\"document(\'\')\\\"><category><xsl:value-of select=\\\"key(\'classification-lookup\',$currentId)/c:description\\\" /></category></xsl:for-each></xsl:template> <xsl:template match=\\\"text()\\\" />\" +
\"<c:classifications><c:classification><c:id>3</c:id><c:description>Abortion Alternatives</c:description></c:classification><c:classification><c:id>4</c:id><c:description>Abortion Providers</c:description>\" +
\"</c:classification><c:classification><c:id>9</c:id><c:description>Abrasives</c:description></c:classification></c:classifications></xsl:stylesheet>\";
Transformer transformer = xformFactory.newTransformer(new StreamSource(IoUtils.toInputStream(xsltString)));
transformer.setoutputProperty(OutputKeys.INDENT,\"yes\");
FileOutputStream fileOutputStream = new FileOutputStream(new File(outputXmlFileName));
DOMSource source = new DOMSource(document);
Result result = new StreamResult(fileOutputStream);
transformer.transform(source,result);
fileOutputStream.close();
}
当我尝试如下操作时(编写了modifiel xsl并读回之后)
Transformer transformer = xformFactory.newTransformer(new StreamSource(xsltFile));
它工作正常-但
Transformer transformer = xformFactory.newTransformer(new StreamSource(IoUtils.toInputStream(xsltString))); does not process the lookup.
输入如下
<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>
<BusinessListings vendorId=\"0\" schemaVersion=\"\"
fileCreateDate=\"\" xmlns=\"http://www.myDomain.com\">
<BusinessListing>
<id>1593469</id>
<listingData>
<classifications>
<classificationId>3</classificationId>
<classificationId>9</classificationId>
</classifications>
</listingData>
</BusinessListing>
</BusinessListings>
这可能是什么问题?
解决方法
首先,要回答您的问题-请参阅XSLT 1.0规范,该规范说明了对文档函数使用零长度字符串arg的情况:
请注意,零长度的URI引用是对该文档的引用,相对于该文档,URI引用正在被解析;因此document(\“ \”)指样式表的根节点;样式表的树表示形式与包含样式表的XML文档是原始源文档完全相同。
由于样式表的源是内存中的流,因此没有用于解析它的URI。它可以与文件一起使用,因为它能够解析文件的位置并重新加载它。可能有一些方法可以使它与系统ID或自定义URI解析器一起使用,但我认为这可能是一种更简单的方法。
其次,为什么要在XSLT中嵌入分类数据?为什么不将其作为参数传递呢?这似乎容易得多,并且通过使用对参数的引用替换document(\'\')调用,将在很大程度上相同。
, 您可以将ByteArrayInputStream传递到StreamSource对象吗?您可以使用String进行初始化。
就像是:
ByteArrayInputStream bais = new ByteArrayInputStream(xsltString.getBytes(),\"UTF-8\");
Transformer transformer = xformFactory.newTransformer( new StreamSource( bais ) );
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。