我需要将一个POJO转换为以下XML:
<Root>
<Version>2.0</Version>
<Name>John</Name>
<Age>18</Age>
<UserId>22491</UserId>
<Country>USA</Country>
<AnotherData>
<Records>
<AnotherRecord>
<Field1>XXX</Field1>
<Field2>XX</Field2>
<Field3>CCCCCCCC</Field3>
<Field4>XXX9000</Field4>
<Field5>XXX00345</Field5>
</AnotherRecord>
</Records>
</AnotherData>
</Root>
我知道如何转换根标签下面的字段,这不是问题。但是从AnotherData我的问题开始。
要表示上面的xml,我需要这样的类:
puclic class Root{
public String Version;
public String Name;
public String Age;
public String UserID;
public String Country;
public AnotherData AnotherData;
}
public class AnotherData{
public Records Records;
}
public class Records{
List<AnotherRecord> list;
}
public class AnotherRecord{
public String Field1;
public String Field2;
public String Field3;
public String Field4;
public String Field5;
}
但是我不需要这个类的结构,我喜欢在更简单的模式下实现我的类,并在xml中“强制”标记结构。
我的课程如下,但保持结构xml如上所述。
puclic class Root{
public String Version;
public String Name;
public String Age;
public String UserID;
public String Country;
public AnotherData AnotherData;
List<AnotherRecord> list;
}
public class AnotherRecord{
public String Field1;
public String Field2;
public String Field3;
public String Field4;
public String Field5;
}
答案 0 :(得分:1)
注意:我是EclipseLink JAXB (MOXy)主管,是JAXB (JSR-222)专家组的成员。
我不相信XStream可以处理这个用例。如果您愿意使用其他技术,下面是一个如何使用MOXy完成的示例。使用@XmlPath
扩展程序。
@XmlPath("AnotherData/Records/AnotherRecord")
List<AnotherRecord> list;
<强>根强>
以下是完全映射的Root
类的外观。 JAXB不需要任何注释(请参阅:http://blog.bdoughan.com/2012/07/jaxb-no-annotations-required.html),但由于文档中的XML元素与默认命名规则不匹配,因此需要一些注释。
package forum11970410;
import java.util.List;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement(name="Root")
public class Root{
@XmlElement(name="Version")
public String Version;
@XmlElement(name="Name")
public String Name;
@XmlElement(name="Age")
public String Age;
@XmlElement(name="UserId")
public String UserID;
@XmlElement(name="Country")
public String Country;
@XmlPath("AnotherData/Records/AnotherRecord")
List<AnotherRecord> list;
}
<强> AnotherRecord 强>
package forum11970410;
import javax.xml.bind.annotation.XmlElement;
public class AnotherRecord{
@XmlElement(name="Field1")
public String Field1;
@XmlElement(name="Field2")
public String Field2;
@XmlElement(name="Field3")
public String Field3;
@XmlElement(name="Field4")
public String Field4;
@XmlElement(name="Field5")
public String Field5;
}
的 jaxb.properties 强>
要将MOXy指定为JAXB提供程序,您需要在与域类相同的程序包中添加名为jaxb.properties
的文件,并带有以下条目(请参阅:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html):
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
<强>演示强>
您可以使用以下演示代码来证明一切正常:
package forum11970410;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Root.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum11970410/input.xml");
Root root = (Root) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}
}
<强> input.xml中/输出强>
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<Version>2.0</Version>
<Name>John</Name>
<Age>18</Age>
<UserId>22491</UserId>
<Country>USA</Country>
<AnotherData>
<Records>
<AnotherRecord>
<Field1>XXX</Field1>
<Field2>XX</Field2>
<Field3>CCCCCCCC</Field3>
<Field4>XXX9000</Field4>
<Field5>XXX00345</Field5>
</AnotherRecord>
</Records>
</AnotherData>
</Root>
了解更多信息