Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Convert Object to XML using JAXB

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 496
    Comment on it

    Hello Programmers,

    A number of times, we need to cast our Java object into an XML or vice-versa. The turms are technically know as marshalling and un-marshalling. There are many different Java libraries to do the same in which Castor and JAXB are commonly used.

    I am going to use JAXB as this comes with our JDK 1.6+ package.

    Let understand with an example. Suppose we have a company with a number of its employees. So, we all might have similar class hierarchy in our mind to represent it. 

    1. package com.evontech.blog;
    2.  
    3. import javax.xml.bind.annotation.XmlElement;
    4. import javax.xml.bind.annotation.XmlRootElement;
    5.  
    6. @XmlRootElement
    7. public class Company {
    8.     
    9.     private EmployeeList employeeList;
    10.  
    11.     public EmployeeList getEmployeeList() {
    12.         return employeeList;
    13.     }
    14.  
    15.     @XmlElement
    16.     public void setEmployeeList(EmployeeList employeeList) {
    17.         this.employeeList = employeeList;
    18.     }
    19.     
    20. }
    21.  

    In the code snippet above, Annotation @XmlRootElement describe as this class will be the root of the XML. @XmlElement is an element for that root.

    That's it. Let's test it.

    1. package com.evontech.blog;
    2.  
    3. import java.io.File;
    4. import java.util.ArrayList;
    5. import java.util.List;
    6.  
    7. import javax.xml.bind.JAXBContext;
    8. import javax.xml.bind.Marshaller;
    9.  
    10. import org.junit.Test;
    11.  
    12. public class BlogTest {
    13.  
    14.     @Test
    15.     public void testJaxb() {
    16.  
    17.         List<Employee> empoyees = new ArrayList<Employee>();
    18.  
    19.         Employee emp1 = new Employee();
    20.         emp1.setId(1);
    21.         emp1.setName("Dinesh");
    22.         empoyees.add(emp1);
    23.  
    24.         Employee em2 = new Employee();
    25.         em2.setId(2);
    26.         em2.setName("Babita");
    27.         empoyees.add(em2);
    28.         
    29.         EmployeeList empList = new EmployeeList();
    30.         empList.setEmployees(empoyees);
    31.  
    32.         Company company = new Company();
    33.         company.setEmployeeList(empList);
    34.  
    35.         try {
    36.  
    37.             File file = new File("D:\\file.xml");
    38.             if(!file.exists()) {
    39.                 file.createNewFile();
    40.             }
    41.             JAXBContext jaxbContext = JAXBContext.newInstance(Company.class);
    42.             Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
    43.  
    44.             // output pretty printed
    45.             jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
    46.  
    47.             jaxbMarshaller.marshal(company,file);
    48.         } catch(Exception e) {
    49.             e.printStackTrace();
    50.         }
    51.     }
    52.  
    53. }
    54.  

    Just run this test case. If you will check the file in your D drive.

    1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    2. <company>
    3. <employeeList>
    4. <employees>
    5. <id>1</id>
    6. <name>Dinesh</name>
    7. </employees>
    8. <employees>
    9. <id>2</id>
    10. <name>Babita</name>
    11. </employees>
    12. </employeeList>
    13. </company>

    Thanks :)

    Happy programming.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: