带参数的 Java 转换器
我使用 Java (JAXP) 进行 XML 转换,并且需要将 xml 片段作为参数传递给转换器:
<DOCTYPES>
<SUBTYPE>Passport</SUBTYPE>
<DOCTYPE>Proof of identity</DOCTYPE>
</DOCTYPES>
<DOCTYPES>
<SUBTYPE>Driving License</SUBTYPE>
<DOCTYPE>Proof of address</DOCTYPE>
</DOCTYPES>
假设 xmlfrag 包含上面的 xml 片段。我将它传递给转换器:
transformer.setParameter("orset", xmlfrag);
xmlfrag 需要是什么类型,以便我可以在转换期间将其作为 xml 访问?我尝试了 string 和 xmltype 但没有成功。
I'm using Java (JAXP) for XML transformation and I need to pass a fragment of xml as parameter to the transformer:
<DOCTYPES>
<SUBTYPE>Passport</SUBTYPE>
<DOCTYPE>Proof of identity</DOCTYPE>
</DOCTYPES>
<DOCTYPES>
<SUBTYPE>Driving License</SUBTYPE>
<DOCTYPE>Proof of address</DOCTYPE>
</DOCTYPES>
Let's say xmlfrag contains the above piece of xml. I pass it to the transformer:
transformer.setParameter("orset", xmlfrag);
What is the type that xmlfrag needs to be so I can access it as xml during the transformation? I tried string and xmltype but no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论