gpt4 book ai didi

java - 使用 JaxB 解析类层次结构

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:29:54 28 4
gpt4 key购买 nike

我有类层次结构

interface Intf {}

Class A implements Intf{}

Class B implements Intf{}

现在我使用上面的 Class AClass B 通过 JaxB 的 elp 读取两个不同的 XML 文件。谁能建议我如何在 JaxB 中配置和使用上述结构?

最佳答案

对于您的用例,接口(interface)没有考虑在内。如果您想将 AB 映射到不同的 XML 结构,您可以继续这样做,我下面将举例说明。

Java 模型

IntF

public interface IntF {

public String getFoo();

public void setFoo(String foo);

}

一个

import javax.xml.bind.annotation.*;

@XmlRootElement
public class A implements IntF {

private String foo;

@Override
@XmlElement(name="renamed-foo")
public String getFoo() {
return foo;
}

@Override
public void setFoo(String foo) {
this.foo = foo;
}

}

B

import javax.xml.bind.annotation.*;

@XmlRootElement
public class B implements IntF {

private String foo;

@Override
@XmlAttribute
public String getFoo() {
return foo;
}

@Override
public void setFoo(String foo) {
this.foo = foo;
}

}

演示代码

演示

import javax.xml.bind.*;

public class Demo {

public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(A.class, B.class);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

A a = new A();
a.setFoo("Hello World");
marshaller.marshal(a, System.out);

B b = new B();
b.setFoo("Hello World");
marshaller.marshal(b, System.out);
}

}

输出

<?xml version="1.0" encoding="UTF-8"?>
<a>
<renamed-foo>Hello World</renamed-foo>
</a>
<?xml version="1.0" encoding="UTF-8"?>
<b foo="Hello World"/>

关于java - 使用 JaxB 解析类层次结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15676401/

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