使用java XML注释JAXB将多个元素绑定到属性作为键的映射

时间:2012-09-05 18:47:40

标签: java xml map jaxb unmarshalling

我有一个XML源代码,我可以使用JAXB解组对象。 XML源:

<album>
    <name>something</name>
    <id>003030</id>
    <artist>someone</artist>
    ...
</album>

java源代码(与所需的getter / setter一样):

@XmlRootElement(name="album")
class Album {
    String name;
    Long id;
    String artist;
    ...
}

到目前为止一切顺利。现在我在专辑列表中获得了一些不同大小的图片网址:

...
<image size="small">http://.../small.jpg</image>
<image size="medium">http://.../medium.jpg</image>
<image size="large">http://.../large.jpg</image>
...

我想将它映射到类似这样的java Map:

Map<String,String> imageUrls;

地图的键是size属性,地图的值是元素值。 如果可能的话,我应该如何注释这个变量?

1 个答案:

答案 0 :(得分:5)

帮助程序类Pair

@XmlAccessorType(XmlAccessType.FIELD)
public class Pair {

    @XmlAttribute
    private String key;

    @XmlValue
    private String value;

    public Pair() {
    }

    public Pair(String key, String value) {
        this.key = key;
        this.value = value;
    }  
//... getters, setters  
}  

对名单

@XmlAccessorType(XmlAccessType.FIELD)
public class PairList 
{
    private List<Pair> values = new ArrayList<Pair>();

    public PairList() {
    }  
//...  
}  

适配器

public class MapAdaptor extends XmlAdapter<PairList, Map<String, String>> 
{
    @Override
    public Map<String, String> unmarshal(PairList list) throws Exception 
    {
        Map<String, String> retVal = new HashMap<String, String>();
        for (Pair keyValue : list.getValues()) 
        {
            retVal.put(keyValue.getKey(), keyValue.getValue());
        }
        return retVal;
    }

    @Override
    public PairList marshal(Map<String, String> map) throws Exception 
    {
        PairList retVal = new PairList();
        for (String key : map.keySet()) 
        {
            retVal.getValues().add(new Pair(key, map.get(key)));
        }
        return retVal;
    }
}

在您的实体中使用

@XmlJavaTypeAdapter(value = MapAdaptor.class)
private Map<String, String> imageUrls = new HashMap<String, String>();  

<强> PS
您可以使用PairList代替Pair[]而不使用PairList课程 适配器

public class MapAdaptor extends XmlAdapter<Pair[], Map<String, String>> 
{
    @Override
    public Map<String, String> unmarshal(Pair[] list) throws Exception 
    {
        Map<String, String> retVal = new HashMap<String, String>();
        for (Pair keyValue : Arrays.asList(list)) 
        {
            retVal.put(keyValue.getKey(), keyValue.getValue());
        }
        return retVal;
    }

    @Override
    public Pair[] marshal(Map<String, String> map) throws Exception 
    {
        List<Pair> retVal = new ArrayList<Pair>();
        for (String key : map.keySet()) 
        {
            retVal.add(new Pair(key, map.get(key)));
        }
        return retVal.toArray(new Pair[]{});
    }
}  

但在这种情况下,您无法控制每对的名称。它将是 item ,你无法改变它

<item key="key2">valu2</item>
<item key="key1">valu1</item>  

<强> PS2
如果您尝试使用List<Pair>代替PairList,则会获得Exception

ERROR: java.util.List haven't no-arg constructor