如何通过simpleframework解析没有父元素的元素列表的XML

时间:2016-04-08 16:37:40

标签: java xml simple-framework

<?xml version="1.0"?>
<list xmlns="http://namespace">
    <imageList>img1</imageList>
    <imageList>img2</imageList>
    <imageList>img3</imageList>
    <imageList>img4</imageList>
    <imageList>img5</imageList>
    <imageList>img6</imageList>
</list>

我有xml这样的内容(不仅仅是为了描述我的问题)

希望通过simpleframevork将其解析为类似List<String>

的内容

但我在抛出异常之前尝试的所有内容

我的课程解析

@Root(strict = false)
public class List {

    @ElementList(entry = "imageList", type = String.class, empty = false)
    public ArrayList<String> images;

    public ArrayList<String> getImages() {
        return images;
    }
}

我收到异常

Caused by: org.simpleframework.xml.core.ValueRequiredException: Unable to satisfy @org.simpleframework.xml.ElementList(entry=imageList, data=false, inline=false, name=, type=class java.lang.String, required=true, empty=false) on field 'images' public java.util.ArrayList ru.cian.qa.pojo.List.images for class ru.cian.qa.pojo.List at line 2

1 个答案:

答案 0 :(得分:1)

parametr inline = true解决了我的问题

这里的工作代码

@Root(strict = false)
public class ImagesList {

    @ElementList(entry = "imageList", inline = true)
    private List<String> images;

    public List<String> getImages() {
        return images;
    }
}