我有一个如图所示的xml。我想将此文档转换为下面显示的等效Java对象
<page>
<body>
<category id="category-0_2">
<container title="Spotlight" slug="spotlight"></container>
<container title="Just Added Shows" slug="just_added_shows"></container>
<container title="Originals" slug="originals"></container>
<container title="Popular TV Shows" slug="popular_tv_shows"></container>
<container title="Wonder Women" slug="wonder_women"></container>
</category>
</body>
</page>
public class HomeXML {
Page page;
Body body;
Category category;
List<Container> containerList;
}
是否可以使用simpleframework xml serialiser
执行此操作?我可以获取整个XML并手动解析它,但我正在寻找通过simpleframework
API执行此操作的方法。
答案 0 :(得分:0)
得到了答案。 simple framework提供了将XML文档转换为Java对象列表的实用函数。
此处有更多详情http://simple.sourceforge.net/download/stream/doc/tutorial/tutorial.php#util