我想将 XML 转换为 Java 对象。但我不希望在代码中硬编码 XML 标记和 Java 类之间的映射,例如使用 JAXB 注释或 XStream.alias() 方法。
我如何实现这一目标?
谢谢!
然后您应该选择一个 XML 解析器并设计您自己的解组器。另一方面,JAXB 可以将 xml 解组为没有注释的 Java bean,请参阅此代码,它可以工作
public class Test {
private String e1;
public String getE1() {
return e1;
}
public void setE1(String e1) {
this.e1 = e1;
}
public static void main(String[] args) throws Exception {
String xml = "<Test><e1>test</e1></Test>";
Test t = JAXB.unmarshal(new StringReader(xml), Test.class);
System.out.println(t.getE1());
}
}
注意: 我是EclipseLink JAXB (MOXy)负责人,也是JAXB (JSR-222)专家组的成员。
在 JAXB 的 EclipseLink MOXy 实现中,我们提供了一个外部映射文档,可以用作标准注释的替代方案。
oxm.xml
下面是一个示例映射文档。
<?xml version="1.0"?>
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
package-name="blog.bindingfile">
<xml-schema
namespace="http://www.example.com/customer"
element-form-default="QUALIFIED"/>
<java-types>
<java-type name="Customer">
<xml-root-element/>
<xml-type prop-order="firstName lastName address phoneNumbers"/>
<java-attributes>
<xml-element java-attribute="firstName" name="first-name"/>
<xml-element java-attribute="lastName" name="last-name"/>
<xml-element java-attribute="phoneNumbers" name="phone-number"/>
</java-attributes>
</java-type>
<java-type name="PhoneNumber">
<java-attributes>
<xml-attribute java-attribute="type"/>
<xml-value java-attribute="number"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
演示
下面是一个示例,说明如何在引导JAXBContext
.
package blog.bindingfile;
import java.io.File;
import java.util.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
public class Demo {
public static void main(String[] args) throws Exception {
Map<String, Object> properties = new HashMap<String, Object>(1);
properties.put(JAXBContextFactory.ECLIPSELINK_OXM_XML_KEY, "blog/bindingfile/binding.xml");
JAXBContext jc = JAXBContext.newInstance("blog.bindingfile", Customer.class.getClassLoader() , properties);
Unmarshaller unmarshaller = jc.createUnmarshaller();
Customer customer = (Customer) unmarshaller.unmarshal(new File("src/blog/bindingfile/input.xml"));
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(customer, System.out);
}
}
了解更多信息