使用 Xstream 解析 XML 以获取架构位置
我无法使用 xstream 从 XML 中查找架构位置。
<order xmlns="http://www.mycompany.com/xml/myproject"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="test.xsd">
为了通过模式验证 XML,我使用了 javax :
Validator validator = schema.newValidator();
validator.validate(source);
现在我已将模式名称硬编码为“test.xsd”,但我希望这只是一个临时修复。
I'm having trouble finding out the schema location from the XML using the xstream.
<order xmlns="http://www.mycompany.com/xml/myproject"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="test.xsd">
For validation of the XML, with the schema, I'm using the javax :
Validator validator = schema.newValidator();
validator.validate(source);
For now I've hardcoded the schema name as "test.xsd", but I hope that is just a temporary fix.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,XStream 不支持命名空间,但我认为您可以启用它。您应该能够在网站上找到详细信息。不过,为了访问命名空间,您可以像对待任何其他属性一样对待它:
XStream isn't namespace-aware by default, though I think you can enable that. You should be able to find details on the website. To just get access to the namespace, though, you can treat it like any other attribute: