如何使用 saxon 9.2he 在 java 中设置 xquery 上下文文档?
执行简单的此 xquery
for $elem in /root/element()
return
$elem
如何在不使用 fn:doc 的情况下使用 java 在 xml 文件上
?我不断得到 XPDY0002:轴步骤 child::element(xml, xs:anyType) 的上下文项未定义
-- 概要:我需要一个简单的解决方案来加载 xml 文件、加载 xquery 并处理
how do I execute a simple this xquery, such as this
for $elem in /root/element()
return
$elem
on an xml file using java without using fn:doc?
I keep getting
XPDY0002: The context item for axis step child::element(xml, xs:anyType) is undefined
--the rundown: I need a simple solution to load an xml file, load an xquery and process
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我发现的最简单的方法,但是我希望使用 XQStaticContext 将 contextDocument“绑定”到表达式。
here is the simplest way I found to do it however I was hoping to use XQStaticContext to "bind" the contextDocument to the expression.