gpt4 book ai didi

java - 从 XML 字符串及其存储在字符串中的模式进行内存中解码,可能吗?

转载 作者:行者123 更新时间:2023-11-30 05:14:31 25 4
gpt4 key购买 nike

假设我将 XML 字符串存储到变量中

String resp = new String("<?xml version=\"1.0\" encodin...");

以及另一个 XML 中与此 XML 相关的架构定义:

String xsd = new String("<xs:schema xmlns="http://schema-...");

您认为有一种方法可以验证和解码“resp”吗到对象中(例如使用 JAXB)?有没有人已经尝试或成功实现了这样的东西?

提前,非常感谢您的任何建议......塞布

最佳答案

您可以使用unmarshal(Source source)setSchema(Schema schema) Unmarshaller 类的。这应该有效:

unmarshaller.setSchema(SchemaFactory.newSchema(new StreamSource(new StringReader(xsd));
unmarshaller.unmarshal(new StreamSource(new StringReader(resp));

关于java - 从 XML 字符串及其存储在字符串中的模式进行内存中解码,可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2085229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com