Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have xml as below.

<Employees>
      <Employee id="1">Chuck</Employee>
      <Employee id="2">Al</Employee>
      <Employee id="3">Kiran</Employee>
</Employees>

XML contains huge number of employees.I have mentioned only for simplification.

What is the best way to parse this xml and populate into a map? Map should contain id and name pairs.

Please provide code for better understanding.

share|improve this question
Use jdom and iterate over all employee entries adding into a Map<String, Integer>. – jsn Aug 8 '12 at 19:45
1  
What have you tried? do you know the difference between SAX, DOM, XPATH, ect... please search stackoverflow before posting. I think this question has been answered about 1000 times. – Colin D Aug 8 '12 at 20:02

4 Answers

up vote 1 down vote accepted

We can simply map this using Xstream.

XStream xStream = new XStream(new DomDriver());
xStream.alias("Employees", Employees.class);
xStream.registerConverter(new MapEntryConverter());
employeesMap = (Map<String, String>) xStream.fromXML(queryXML);

Create a converter which unmarshall XML to Map object

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;
        }
    }

Create Employees and Employee classes as below.

private class Employees{
        List<Employee> employees;
    }
    private class Employee{
        private String id;
        private String value;
}

Hope this works for you.

share|improve this answer

Use a library such as XStream. List<Employee> suits better than a Map here.

share|improve this answer
List is better than a Map if OP doesn't care about lookup times. – Doug Ramsey Aug 8 '12 at 19:48
how about Set over both List or Map – Colin D Aug 8 '12 at 19:58
My requirement is to set in Map – Java P Aug 8 '12 at 20:00

The XStream answer seems like a lot of code. You could do something like the following with the StAX APIs in the JDK/JRE:

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
        }
    }

}
share|improve this answer

I would just parse it manually since the structure is pretty uniform it seems.

import java.io.*;
import java.util.Map;
import java.util.HashMap;
public class ParseXML
{
    public static void parseXML() throws Exception
    {
        BufferedReader br = new BufferedReader(new FileReader("example.xml"));
        String line;
        //skip the opening tag
        br.readLine(); 
        Map<Integer,String> employees = new HashMap<Integer,String>();
        //run until the closing tag
        while((line = br.readLine()).indexOf("</Employees>") == -1) 
        {
            int idStart = line.indexOf("id=\"");
            int idEnd = line.indexOf("\">",idStart);
            int id = Integer.parseInt(line.substring(idStart+4,idEnd));
            int nameEnd = line.indexOf("</Employee",idEnd);
            String name = line.substring(idEnd+2,nameEnd);
            employees.put(id,name);
        }
    }        
}
share|improve this answer
2  
A piece of code which had lot of bugs had this kind of code written by an earlier developer. We all curse that developer to this day. – adarshr Aug 9 '12 at 9:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.