我需要将 xml 解析为 HashMap,其中的“键”是两个元素属性的串联。xml 看起来像:
<map>
<parent key='p1'><child key='c1'> value1</child></parent>
<parent key='p2'><child key='c2'> value1</child></parent>
</map>
在地图的第一个条目中,我想将 'p1.c1' 作为地图键,而将 'value1' 作为地图值。如何做到这一点?
我需要将 xml 解析为 HashMap,其中的“键”是两个元素属性的串联。xml 看起来像:
<map>
<parent key='p1'><child key='c1'> value1</child></parent>
<parent key='p2'><child key='c2'> value1</child></parent>
</map>
在地图的第一个条目中,我想将 'p1.c1' 作为地图键,而将 'value1' 作为地图值。如何做到这一点?
解决。用户扩展 hashmap 规则。
Apache common digest 并不是一个真正的完整解析器,有时它非常慢......如果您必须处理大型 XML 文档,您可能想要查看扩展的 VTD-XML,它支持高达 256 GB 的 XML,它也支持内存映射,允许部分加载 XmL 文档
使用 Xstream ( http://x-stream.github.io/ ) 的示例。它不完全遵循您的 XML 规范,我在标签中添加了嵌套<value>
标签<child>
。
输出:
<map>
<parent key="p1">
<child key="c1">
<value>value1</value>
</child>
</parent>
<parent key="p2">
<child key="c2">
<value>value1</value>
</child>
</parent>
</map>
p1.c1=value1
p2.c2=value1
这有帮助吗?否则请跟进。
import java.util.HashMap;
import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.DomDriver;
public class MapParser {
public static void main(String[] args) {
XStream xstream = new XStream(new DomDriver());
xstream.alias("map", Map.class);
xstream.addImplicitCollection(Map.class, "parents");
xstream.alias("parent", Parent.class);
xstream.useAttributeFor(Parent.class, "key");
xstream.alias("child", Child.class);
xstream.useAttributeFor(Child.class, "key");
Map map = (Map) xstream
.fromXML("<map><parent key='p1'><child key='c1'><value>value1</value></child></parent><parent key='p2'><child key='c2'><value>value1</value></child></parent></map>");
System.out.println(xstream.toXML(map));
java.util.Map result = new HashMap();
for (Parent parent : map.getParents()) {
Child child = parent.getChild();
String key = parent.getKey() + "." + child.getKey();
result.put(key, child.getValue());
System.out.println(key + "=" + child.getValue());
}
}
}
import java.util.ArrayList;
import java.util.List;
public class Map {
private List<Parent> parents = new ArrayList<Parent>();
public void addParent(Parent parent) {
parents.add(parent);
}
public List<Parent> getParents() {
return this.parents;
}
}
public class Parent {
private String key;
private Child child;
public Parent(String key) {
this.key = key;
}
public Child getChild() {
return child;
}
public void setChild(Child child) {
this.child = child;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
}
public class Child {
private String key;
private String value;
public Child(String key) {
this.key = key;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
您在选择和使用 XML 解析器时遇到问题吗?