JAXB
suggest changeVersions
[{“Name”:“Java SE 6”,“GroupName”:null},{“Name”:“Java SE 7”,“GroupName”:null},{“Name”:“Java SE 8”,“GroupName”:null},{“Name”:“Java SE 9 (Early Access)”,“GroupName”:null}]
Introduction
JAXB or Java Architecture for XML Binding (JAXB) is a software framework that allows Java developers to map Java classes to XML representations. This Page will introduce readers to JAXB using detailed examples about its functions provided mainly for marshaling and un-marshaling Java Objects into xml format and vice-versa.
Syntax
- JAXB.marshall(object, fileObjOfXML);
- Object obj = JAXB.unmarshall(fileObjOfXML, className);
Parameters
Parameter | Details |
——— | —–– |
fileObjOfXML | File object of an XML file |
className | Name of a class with .class extension
Remarks
Using the XJC tool available in the JDK, java code for a xml structure described in a xml schema (.xsd file) can be automatically generated, see XJC topic.