gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 07:28:26 24 4
gpt4 key购买 nike

<?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

最佳答案

parametr inline = true 解决了我的问题

这里是工作代码

@Root(strict = false)
public class ImagesList {

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

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

关于java - 如何通过 simpleframework 解析带有没有父元素列表的 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36504872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com