Visit_all_class parser = new Visit_all_class();
String xml = parser.Call3(URL); // getting XML
Document doc = parser.getDomElement(xml); // getting DOM element
NodeList nl = doc.getElementsByTagName(KEY_VISIT);
// looping through all item nodes <item>
for (int i = 0; i < nl.getLength(); i++) {
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
Log.v("map","map" +map);
Element e = (Element) nl.item(i);
// adding each child node to HashMap key => value
map.put(KEY_ACCOUNTNUMBER, parser.getValue(e, KEY_ACCOUNTNUMBER));
map.put(KEY_LOCATION, parser.getValue(e, KEY_LOCATION));
map.put(KEY_NAME, parser.getValue(e, KEY_NAME));
map.put(KEY_VISITID, parser.getValue(e, KEY_VISITID));
map.put(KEY_DURATION, parser.getValue(e, KEY_DURATION));
map.put(KEY_LAST, parser.getValue(e, KEY_LAST));
map.put(KEY_PLANNED, parser.getValue(e, KEY_PLANNED));
map.put(KEY_COMPLETION, parser.getValue(e, KEY_COMPLETION));
map.put(KEY_START, parser.getValue(e, KEY_START));
map.put(KEY_STATUS, parser.getValue(e, KEY_STATUS));
// adding HashList to ArrayList
menuItems1.add(map);
我已经解析了来自 web 服务的值并将其放在 menuItems 中。但是,我想从 web 服务中单独解析值并将其传递给为数据库创建的方法。
请建议如何从 web 服务中单独解析值的方法。