我有一个像这样的xml文件
<info>
<item key=1>value1</item>
<item key=2>value2</item>
</info>
我想得到像这样的绑定课程
class Info {
@XmlJavaTypeAdapter(MapAdapter.class)
private Map<Integer,Item> map;
public setMap...
public getMap...
}
class Item{
@XmlAttribute
private Integer key;
@XmlValue
private String value;
//get,set method...
}
它对包裹的字段很有趣
<info>
<map>
<item key=1>value1</item>
<item key=2>value2</item>
</map>
</info>
当我摆脱<map>
时,它失败了,没有错误。
MapAdapter没有用。
public Map<Integer, Item> unmarshal(MapType myMapType) throws Exception {
HashMap<Integer, Item> hashMap = new HashMap<Integer, Item>();
for (Item myEntryType : myMapType.getEntry()) {
hashMap.put(myEntryType.getKey(), myEntryType);
}
return hashMap;
}
myMapType始终为null。
我该怎么处理这个xml?
答案 0 :(得分:1)
您的Info
是Map
的装饰者。在您的示例中,它不提供地图上的任何值。我看到两种选择:
移除Info
,移动map
以替换info
的使用。
为@XmlJavaTypeAdapter
而不是地图写下Info
。
让它编组/解组内部map
- 您已经在做什么,只需将其移动到一个级别。
答案 1 :(得分:1)
我的解决方案是
完整的青少年项目在http://code.google.com/p/jinahya/source/browse/trunk/com.googlecode.jinahya/stackoverflow
@XmlRootElement
@XmlAccessorType(XmlAccessType.NONE)
public class Info {
@XmlElement(name = "item")
private List<Item> getItems() {
return new ArrayList<Item>(getMap().values());
}
private void setItems(final List<Item> items) {
getMap().clear();
for (Item item : items) {
getMap().put(item.getKey(), item);
}
}
public Map<Integer, Item> getMap() {
if (map == null) {
map = new HashMap<Integer, Item>();
}
return map;
}
private Map<Integer, Item> map;
}
测试
@Test
public void testXml() throws JAXBException {
final JAXBContext context = JAXBContext.newInstance(Info.class);
final Info marshall = new Info();
marshall.getMap().put(1, Item.newInstance(1, "value1"));
marshall.getMap().put(2, Item.newInstance(2, "value2"));
final Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
marshaller.marshal(marshall, baos);
System.out.println(new String(baos.toByteArray()));
final Unmarshaller unmarshaller = context.createUnmarshaller();
final Info unmarshal = (Info) unmarshaller.unmarshal(
new ByteArrayInputStream(baos.toByteArray()));
for (Item item : unmarshal.getMap().values()) {
System.out.println(item);
}
}
打印
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<info>
<item key="1">value1</item>
<item key="2">value2</item>
</info>
key=1&value=value1
key=2&value=value2
答案 2 :(得分:0)
标识地图成员。地图成员上的@XmlValue注释可能有效。
答案 3 :(得分:0)
注意:我是EclipseLink JAXB (MOXy)主管,是JAXB (JSR-222)专家组的成员。
您可以利用MOXy的@XmlPath
扩展程序来支持您的用例。
<强>信息强>
package forum11956071;
import java.util.Map;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
class Info {
@XmlJavaTypeAdapter(MapAdapter.class)
@XmlPath(".")
private Map<Integer,String> map;
}
<强> MapAdapter 强>
package forum11956071;
import java.util.*;
import java.util.Map.Entry;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class MapAdapter extends XmlAdapter<MapAdapter.AdaptedMap, Map<Integer, String>>{
public static class AdaptedMap {
public List<Item> item = new ArrayList<Item>();
}
public static class Item {
@XmlAttribute Integer key;
@XmlValue String value;
}
@Override
public AdaptedMap marshal(Map<Integer, String> map) throws Exception {
AdaptedMap adaptedMap = new AdaptedMap();
for(Entry<Integer, String> entry : map.entrySet()) {
Item item = new Item();
item.key = entry.getKey();
item.value = entry.getValue();
adaptedMap.item.add(item);
}
return adaptedMap;
}
@Override
public Map<Integer, String> unmarshal(AdaptedMap adaptedMap) throws Exception {
Map<Integer, String> map = new HashMap<Integer, String>();
for(Item item : adaptedMap.item) {
map.put(item.key, item.value);
}
return map;
}
}
<强> jaxb.properties 强>
要将MOXy指定为JAXB提供程序,您需要在与域模型相同的程序包中包含名为jaxb.properties
的文件,并带有以下条目(请参阅:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
<强>演示强>
package forum11956071;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Info.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum11956071/input.xml");
Info info = (Info) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(info, System.out);
}
}
<强> input.xml中/输出强>
<?xml version="1.0" encoding="UTF-8"?>
<info>
<item key="1">value1</item>
<item key="2">value2</item>
</info>