- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
有许多通过 XSLT 将 XML 流式传输 XML,然后将 JAXB 转换为 Java 对象的示例。它们通常看起来像这样:
Transformer responseTransformer = TransformerFactory.newInstance().newTransformer(new StreamSource(getClass().getResourceAsStream("ResponseTransformation.xsl")));
Unmarshaller jaxbUnmarshaller = JAXBContext.newInstance(ObjectFactory.class.getPackage().getName()).createUnmarshaller();
JAXBResult jaxbResult = new JAXBResult(jaxbUnmarshaller);
responseTransformer.transform(new StreamSource(new StringReader(responseXml)), jaxbResult);
res = jaxbResult.getResult();
还有像这样的声明类型的 JAXB Unmarshal 示例(来自 Unmarshaller javadoc):
JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" );
Unmarshaller u = jc.createUnmarshaller();
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware(true);
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new File( "nosferatu.xml"));
Element fooSubtree = ...; // traverse DOM till reach xml element foo, constrained by a
// local element declaration in schema.
// FooType is the JAXB mapping of the type of local element declaration foo.
JAXBElement<FooType> foo = u.unmarshal(fooSubtree, FooType.class);
请注意我们如何在 u.unmarshal(fooSubtree, FooType.class)
调用中为根元素指定 FooType.class。不错。
问题是:有没有办法将上面示例中的流式处理方式与下面示例中指定声明类型的方式结合起来?
我喜欢一种实现它的方法,但它需要访问 JAXB 实现类。当然可以通过公共(public) JAXB 接口(interface)来完成,对吧?
谢谢!
最佳答案
您可以通过创建 XMLFilter 来访问 unmarshaller.unmarshal(source, type) 方法。此代码将允许您运行转换并解码为未绑定(bind)到 XSD 中的根元素的对象:
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLFilter;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.util.JAXBResult;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.sax.SAXSource;
import javax.xml.transform.sax.SAXTransformerFactory;
import javax.xml.transform.stream.StreamSource;
import static org.apache.commons.io.IOUtils.closeQuietly;
...
InputStream transformIn = null;
InputStream sourceIn = null;
try {
// get the transform and source streams.
transformIn = ...;
sourceIn = ...;
// create the filtered source
SAXTransformerFactory factory = (SAXTransformerFactory)TransformerFactory.newInstance();
XMLFilter filter = factory.newXMLFilter(new StreamSource(transformIn));
Source source = new SAXSource(filter, new InputSource(new InputStreamReader(sourceIn, "UTF-8")));
// unmarshal the object.
Unmarshaller jaxbUnmarshaller =
JAXBContext.newInstance(ObjectFactory.class.getPackage().getName()).createUnmarshaller();
JAXBElement<FooType> foo = jaxbUnmarshaller.unmarshal(source, FooType.class);
}
finally {
closeQuietly(transformIn);
closeQuietly(sourceIn);
}
警告:仅仅因为您使用的是流式 API 并不意味着实现是流式的。大多数 XSLT 处理器将在转换文档之前构建输入的 DOM 样式表示。如果您试图避免在解码之前构建文档,则此代码可能不会这样做。参见 this answer有关处理器的更多信息。
关于java - 通过转换将 XML 流式传输到 JAXB Unmarshaller,并为根元素声明类类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8888264/
我正在将 Unmarshaller 与 Spring Web Services 一起使用。我在网上看到了一些例子,看起来这两个接口(interface)可以互换使用。我想知道其中一个是否比另一个更好?
下面有一个 Unmarshaller 实现,因为 time.Unix 只接受秒或纳秒,但我的数据源以毫秒为单位。在问我这里的问题之前是一些代码 代码: type Platform struct {
我在使用 Morphia 读取/解码多维数组时遇到了麻烦。 以下类: @Entity class A { double[][] matrix; } 被正确编码并存储在 mongodb 中,但是在读
我正在学习Spray,使用spray-can和spray-httpx(没有spray-routing)来接受上传的文件。我提出了以下建议: def receive = { ...
我看过一些帖子,例如 this one解决了在不同键上解码的问题。但是,当我有多个图层时,我似乎很难弄清楚如何去做。 这是我想解码的内容: {"chainlink":{"usd":3.75}}然而,c
我目前正在尝试实现一个 PATCH 端点,该端点应该只更改 JSON 帖子正文中实际提供的值。不幸的是, jackson 似乎将未提供的值视为 NULL,从而重置了这些现有值。以下示例: public
我在读取 .xml 文件时得到以下信息。这是错误 javax.xml.bind.UnmarshalException: unexpected element (uri:"http://www.dJoh
我创建了一个简单的网络服务 (spring-web),用于验证关于 XSD 的传入 XML,如果发生任何验证错误,它们应该返回给请求者。 下面的代码完成了它的工作...... @PostMapping
我在各种堆栈溢出帖子和博客条目中看到了以下语法: JAXBElement sc = unmarshaller.unmarshal(is, SomeClass.class); 那么当我尝试使用此语法时,
好吧,我的问题绝对不同于针对同一问题提出的所有其他问题。 这是我的写法: public Folder(Parcel in, ClassLoader loader) { id = in.read
我有关于将 XML 转换为 Java 对象的问题,在这里我使用 JAXB。 就我而言: XML 数据: Aris Tonar XML 数据
我正在一个简单的 java 类上尝试 Marshaller 和 unMarshaller 的测试代码。 我创建了我的对象并设置了它的 ID。遇到的问题是在将它解码回 java 对象后 ID 变量不一样
我在一个由解码器设置的类中有一个可为空的字段: @XmlElement(name = "value", nillable = true) private BigDecimal valueVariabl
我使用 JAXB 解析器将通过 http 请求发送的 XML 转换为 Java 对象,同时根据我的 XSD 模式对其进行验证。问题是当调用 unmarshal() 方法时会引发此异常: javax.x
我有一个 MysqlTime 结构,它有自己的编码和解码。 type MysqlTime struct { time.Time } const MYSQL_TIME_FORMAT = "200
我是 JAXB 的新手并且继承了一个项目,该项目使用它来编码/解码 xml - 已经使用各种 JAXB 注释编写了自定义验证 - 目前没有使用模式。 我需要在解码时添加一些验证以检查给定元素是否只出现
我从 API 获取如下 JSON: { "unknownkey" : { "sum" : 7030.76636, "low" : 6787.05692, "avg" : 0
在网上尝试了无数解决方案后,我在近一周的时间里遇到了以下困难。具体问题与在我的 JUnit 测试中调用方法 Configuration.getUnmarshallerFactory().getUnma
我收到了 xml [ERROR] Reference Number Same 2007 我想解码它,我正在使用下面的代码 JAXBCo
我从 git 克隆了 optaplanner-examples 以了解如何针对我的问题案例实现该库。 我修改了示例 PassionAdmissionSchedule,我只想要没有 swing 的代码。
我是一名优秀的程序员,十分优秀!