DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
Building Scalable Real-Time Apps with AstraDB and Vaadin
Register Now

Trending

  • Building and Deploying Microservices With Spring Boot and Docker
  • Demystifying SPF Record Limitations
  • What Is Istio Service Mesh?
  • Does the OCP Exam Still Make Sense?

Trending

  • Building and Deploying Microservices With Spring Boot and Docker
  • Demystifying SPF Record Limitations
  • What Is Istio Service Mesh?
  • Does the OCP Exam Still Make Sense?
  1. DZone
  2. Coding
  3. Languages
  4. Marshalling and Unmarshalling in JAXB 2.0

Marshalling and Unmarshalling in JAXB 2.0

Take a look at how to marshal and unmarshal your Java objects and XML data with JAXB 2.0, a useful tool for generating XML schemas from Java code and vice-versa.

Abhishek Giri user avatar by
Abhishek Giri
·
Dec. 30, 16 · Tutorial
Like (11)
Save
Tweet
Share
212.94K Views

Join the DZone community and get the full member experience.

Join For Free

JAXB stands for Java Architecture for XML Binding. It provides a mechanism to write Java objects into XML and read XML as objects. Simply put, you can say it is used to convert Java objects into XML and vice-versa.

JAXB provides a fast and convenient way to bind XML schemas and Java representations, making it easy for Java developers to incorporate XML data and processing functions in Java applications. As part of this process, JAXB provides methods for unmarshalling (reading) XML instance documents into Java content, and then marshalling (writing) Java content back into XML instance documents. JAXB also provides a way to generate XML schemas from Java objects.

jaxb


Features of JAXB 2.0

  • Support for all W3C XML Schema features.

  • Annotation support with the addition of the javax.xml.bind.annotation package to control this binding.

  • Additional validation capabilities through the JAXP 1.3 validation APIs.

  • Smaller runtime libraries.

Marshalling: Converting Objects to XML

In this example, we need to convert Java objects to an XML document. First, we need to create a POJO class.

import javax.xml.bind.annotation.*;

@XmlRootElement
public class Student {

    private String name;
    private int id;
    private String subject;

    Student(){
    }

    Student(String name,int id,String subject){
        this.name=name;
        this.id=id;
        this.subject=subject;
    }

    @XmlElement
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }

    @XmlAttribute
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }

    @XmlElement
    public String getSubject() {
        return subject;
    }
    public void setSubject(String subject) {
        this.subject = subject;
    }
}


In the above class:

  • @XmlRootElement specifies the root element for the XML document.

  • @XmlAttribute specifies the attribute for the root element.

  • @XmlElement specifies the sub-element for the root element.

Now, we will call the marshaller method

try{
    //creating the JAXB context
    JAXBContext jContext = JAXBContext.newInstance(Student.class);
    //creating the marshaller object
    Marshaller marshallObj = jContext.createMarshaller();
    //setting the property to show xml format output
    marshallObj.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
    //setting the values in POJO class
    Student student = new Student(“abhishek”, 1163, “hadoop”);
    //calling the marshall method
    marshallObj.marshal(student, new FileOutputStream(“/home/knoldus/Desktop/student.xml”));

} catch(Exception e) {
    e.printStackTrace();
}


Unmarshalling: Converting XML to Objects

try{
    //getting the xml file to read
    File file = new File(“/home/knoldus/Desktop/student.xml”);
    //creating the JAXB context
    JAXBContext jContext = JAXBContext.newInstance(Student.class);
    //creating the unmarshall object
    Unmarshaller unmarshallerObj = jContext.createUnmarshaller();
    //calling the unmarshall method
    Student student=(Student) unmarshallerObj.unmarshal(file);

    System.out.println(student.getName()+” “+student.getId()+” “+student.getSubject());
}catch(Exception e){
    e.printStackTrace();
}


XML Marshalling (computer science) Java (programming language)

Published at DZone with permission of Abhishek Giri, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Trending

  • Building and Deploying Microservices With Spring Boot and Docker
  • Demystifying SPF Record Limitations
  • What Is Istio Service Mesh?
  • Does the OCP Exam Still Make Sense?

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: