我有如下的xml。
<Employees>
<Employee id="1">Chuck</Employee>
<Employee id="2">Al</Employee>
<Employee id="3">Kiran</Employee>
</Employees>
XML 包含大量员工。我只是为了简化而提到的。
解析此 xml 并填充到地图中的最佳方法是什么?地图应该包含 id 和 name 对。
请提供代码以便更好地理解。
我有如下的xml。
<Employees>
<Employee id="1">Chuck</Employee>
<Employee id="2">Al</Employee>
<Employee id="3">Kiran</Employee>
</Employees>
XML 包含大量员工。我只是为了简化而提到的。
解析此 xml 并填充到地图中的最佳方法是什么?地图应该包含 id 和 name 对。
请提供代码以便更好地理解。
XStream的答案似乎有很多代码。您可以使用 JDK/JRE 中的 StAX API 执行以下操作:
package forum11871952;
import java.io.FileReader;
import java.util.*;
import javax.xml.stream.*;
public class Demo {
public static void main(String[] args) throws Exception {
XMLInputFactory xif = XMLInputFactory.newFactory();
XMLStreamReader xsr = xif.createXMLStreamReader(new FileReader("src/forum11871952/input.xml"));
xsr.nextTag(); // advance to Employees tag
xsr.nextTag(); // advance to first Employer element
Map<String,String> map = new HashMap<String,String>();
while(xsr.getLocalName().equals("Employee")) {
map.put(xsr.getAttributeValue("", "id"), xsr.getElementText());
xsr.nextTag(); // advance to next Employer element
}
}
}
使用诸如 XStream 之类的库。List<Employee>
比Map
这里更适合。
我们可以使用 Xstream 简单地映射它。
XStream xStream = new XStream(new DomDriver());
xStream.alias("Employees", Employees.class);
xStream.registerConverter(new MapEntryConverter());
employeesMap = (Map<String, String>) xStream.fromXML(queryXML);
创建一个将 XML 解组为 Map 对象的转换器
private static class MapEntryConverter implements Converter {
public boolean canConvert(Class clazz) {
return clazz.equals(Employees.class);
}
public void marshal(Object value, HierarchicalStreamWriter writer, MarshallingContext context) {
AbstractMap<String, String> map = (AbstractMap<String, String>) value;
for (Map.Entry<String, String> entry : map.entrySet()) {
writer.startNode(entry.getKey().toString());
writer.setValue(entry.getValue().toString());
writer.endNode();
}
}
public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) {
Map<String, String> map = new HashMap<String, String>();
while (reader.hasMoreChildren()) {
reader.moveDown();
map.put(reader.getAttribute(1), reader.getValue());
reader.moveUp();
}
return map;
}
}
如下创建员工和员工类。
private class Employees{
List<Employee> employees;
}
private class Employee{
private String id;
private String value;
}
希望这对你有用。