是否可以将打包的元素列表直接解组到JAXB中的List<String>
中?
例如,我有一个类似XML:
<TEST>
<MIME_INFO>
<MIME>
<MIME_SOURCE>foo.png</MIME_SOURCE>
<MIME_PURPOSE>normal</MIME_PURPOSE>
</MIME>
<MIME>
<MIME_SOURCE>bar.png</MIME_SOURCE>
<MIME_PURPOSE>normal</MIME_PURPOSE>
</MIME>
</MIME_INFO>
</TEST>
那么是否可以直接将XML文件解组到仅包含{“ foo.png”,“ bar.png”}的List<String>
中?
我知道您可以使用正确的注释创建一个类层次结构以执行此解组,但我想使用类似以下的代码:
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "TEST")
@XmlAccessorType (XmlAccessType.FIELD)
public class Info {
// -> what annotation to put here?
private List<String> infos;
public List<String> getInfos() {
return infos;
}
}
和主文件:
import java.io.File;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
public class UnmarshallingJAXB {
public static void main(String[] args) throws JAXBException {
JAXBContext jaxbContext = JAXBContext.newInstance(Info.class);
Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
Info info = (Info) jaxbUnmarshaller.unmarshal(new File("test.xml"));
// should output foo.png and bar.png
info.getInfos().forEach(System.out::println);
}
}
有什么办法吗?
答案 0 :(得分:1)
道歉这么晚了,但是如果搜索相关问题,这将是Google的第一招,因此无论如何可能会有所帮助。
是的,可以使用
@XmlElementWrapper
组合
@XmlElement
有关更多详细信息,请参见this other answer。