Jaxp xml解析&验证而不写入文件

发布于 2024-09-10 17:12:02 字数 211 浏览 5 评论 0原文

我有一个 JMS 消息传递应用程序,用于读取和写入 MQ 队列。消息数据是字符串形式和 xml 格式(减去 xml 版本等普通标头标记)。我正在寻找读入、写出和验证 xsd 模式的最佳方法,但是我遇到的示例都讨论了如何处理文件。

有没有办法(有教程)获取 xml 字符串;读入并验证它,并对我创建的 xml 字符串执行相同的操作,验证并写出而不写入磁盘?

将不胜感激任何指点。

I've a JMS messaging app thats reading and writing to MQ queues. The message data is string form and in xml format (minus the normal header markers like the xml version etc). I'm looking at the best ways to read in, write out and validate against an xsd schema however the examples I'm coming across all talk about working with files.

Is there any way (tutorials out there) to take an xml string; read it in and validate it and also do the same for an xml string I create validate and write out without writing to disk?

Would appreciate any pointers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

墨落成白 2024-09-17 17:12:02

查看 Java SE 中的 javax.xml.validation API,特别是用于根据 XML 模式验证 XML 内容的 Validator 类:

Check out the javax.xml.validation APIs in Java SE, in particular the Validator class which is used to validate XML content against an XML schema:

丑疤怪 2024-09-17 17:12:02

对字符串使用 StringReader,将读取器传递给 JAXB 方法以读取内容。

Use a StringReader on the strings, pass the reader to the JAXB methods to read the contents.

戴着白色围巾的女孩 2024-09-17 17:12:02

谢谢大家,我设法用以下内容解决了这个问题。

马歇尔:

JAXBContext jaxbContext = JAXUtility.getContext(packageLocation);
StringWriter sw = new StringWriter();
Marshaller m = jaxbContext.createMarshaller();
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
if (o instanceof UnadvisedDeal) { m.marshal((UnadvisedDeal) o,sw);

UnMarshall:

JAXBContext jaxbContext = JAXUtility.getContext(packageLocation);
解组器 um = jaxbContext.createUnmarshaller();
ud = (UnadvisedDeal) um.unmarshal(new StringReader(sw.toString()));

不过还是谢谢你的帮助

thanks folks I managed to sort this one out with the following.

Marshall:

JAXBContext jaxbContext = JAXUtility.getContext(packageLocation);
StringWriter sw = new StringWriter();
Marshaller m = jaxbContext.createMarshaller();
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
if (o instanceof UnadvisedDeal) { m.marshal((UnadvisedDeal) o,sw);

UnMarshall:

JAXBContext jaxbContext = JAXUtility.getContext(packageLocation);
Unmarshaller um = jaxbContext.createUnmarshaller();
ud = (UnadvisedDeal) um.unmarshal(new StringReader(sw.toString()));

thanks for the help though

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