如何读取InputStream形式的xml

发布于 2024-11-29 01:18:15 字数 139 浏览 1 评论 0原文

在我的网络服务中,我得到了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

归途 2024-12-06 01:18:15

尝试教程来掌握 Java 中 XML 处理的基础知识。特别是,有一些关于在使用 SAX 解析时验证 XML 的部分或 DOM。请注意,还有许多其他解析 XML 的方法,例如 XStreamJAXBXMLBeansJDOM 等等。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文