java map映射_java – JAXB:如何将map映射成值

提供的代码没有为我工作。

我找到另一种方式来映射:

MapElements:

package com.cellfish.mediadb.rest.lucene;

import javax.xml.bind.annotation.XmlElement;

class MapElements

{

@XmlElement public String key;

@XmlElement public Integer value;

private MapElements() {} //Required by JAXB

public MapElements(String key, Integer value)

{

this.key = key;

this.value = value;

}

}

MapAdapter:

import java.util.HashMap;

import java.util.Map;

import javax.xml.bind.annotation.adapters.XmlAdapter;

class MapAdapter extends XmlAdapter> {

public MapElements[] marshal(Map arg0) throws Exception {

MapElements[] mapElements = new MapElements[arg0.size()];

int i = 0;

for (Map.Entry entry : arg0.entrySet())

mapElements[i++] = new MapElements(entry.getKey(), entry.getValue());

return mapElements;

}

public Map unmarshal(MapElements[] arg0) throws Exception {

Map r = new HashMap();

for (MapElements mapelement : arg0)

r.put(mapelement.key, mapelement.value);

return r;

}

}

rootElement:

import java.util.HashMap;

import java.util.Map;

import javax.xml.bind.annotation.XmlRootElement;

import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

@XmlRootElement

public class Root {

private Map mapProperty;

public Root() {

mapProperty = new HashMap();

}

@XmlJavaTypeAdapter(MapAdapter.class)

public Map getMapProperty() {

return mapProperty;

}

public void setMapProperty(Map map) {

this.mapProperty = map;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值