将递归XML转换为POJO并返回

时间:2018-01-18 06:55:29

标签: java xml jaxb pojo

XML喜欢这样:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Trees>
    <Tree Id="1" Name="FirstTree" Type="Main Tree">
        <Description>Main Tree</Description>
        <Versions >
            <Version Id="20592" RootNodeId="117341" CreateDate="2018-01-17 17:01:38 Europe/Moscow" Status="EDIT" Label="TestTree">
                <Switch Id="117341" DisplayName="root structure"/>
                <Switch Id="117342" DisplayName="root structure">
                    <ScalarCase Id="40808"/>
                    <Switch Id="117343" DisplayName="root structure">
                        <ScalarCase Id="40809"/>
                         <Switch Id="117344" DisplayName="root structure">
                            <ScalarCase Id="40810"/>
                            <Leaf Id="117345"/> 
                            <Condition Id="117346">
                                <Leaf Id="117347"/>
                            </Condition>
                        </Switch>
                    </Switch>
                </Switch>
            </<Version>
        </Versions>
    </Tree>
</Trees>

我的POJO怎么样看起来像XML的结构?目前还不清楚POJO应该如何描述Version对象。我有抽象类Node并创建了3个继承者:SwitchLeafCondition

如何对这些对象进行递归嵌套以将XML转换为对象并返回?

1 个答案:

答案 0 :(得分:3)

假设您已经创建了镜像xml的POJO,从:

开始
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name="Trees")
public class Trees {
    private Tree Tree;
    // getters and setters
}

到Switch类(其余的我不会在这里写):

@XmlAccessorType(XmlAccessType.FIELD)
public class Switch {
    private Condition Condition;
    private ScalarCase ScalarCase;
    private String Id;
    private String DisplayName;
    private Leaf Leaf;
    @XmlElement(name="Switch")
    private Switch aSwitch;
    // getters and setters
}

所有POJO都有正确的注释等。

然后尝试将xml读入POJO,似乎有效:

   public static void main(String[] args) {

        try {
            File file = new File("trees.xml");
            JAXBContext jaxbContext = JAXBContext.newInstance(Trees.class);
            Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();

            Trees trees = (Trees) jaxbUnmarshaller.unmarshal(file);
            System.out.println(trees);

         } catch (JAXBException e) {
            e.printStackTrace();
        }

    }

编辑: 要回答答案部分中的评论。

当一个类包含一个以自身为类型的字段时,它实质上会创建一个LinkedList,因此您可以拥有所需的任何深度(在内存限制范围内)。