如何读取InputStream形式的xml
在我的网络服务中,我得到了 xml,我必须根据模式作为输入流进行验证。 如果 xml 的根元素中有“version”属性,我必须选择不同的架构文件。 有没有一种便宜的方法可以做到这一点,或者我是否必须将 InputStream 转换为 XML 并通过它进行解析?
In my web service i'm getting the xml i have to validate against a schema as an InputStream.
I have to choose different schema files based if there is a "version" attribute in the root element of the xml.
Is there an inexpensive way of doing this or do i have to convert the InputStream to an XML and parse through it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试教程来掌握 Java 中 XML 处理的基础知识。特别是,有一些关于在使用 SAX 解析时验证 XML 的部分或 DOM。请注意,还有许多其他解析 XML 的方法,例如 XStream、JAXB,XMLBeans 和 JDOM 等等。
Try the tutorial to get a grip on the basics of XML processing in Java. In particular, there are sections on validating XML while parsing with SAX or DOM. Note that there are also numerous other ways of parsing XML, like XStream, JAXB, XMLBeans, and JDOM, to name a few.