JAXB -Play With XML
JAXB -Play With XML (A Simple Example With Explanation) JAXB stands for Java Architecture For XML binding.Using this we can Write and Read An XML File .Unlike SAX,DOM no need to have much knowledge on xml parsing . JAXB is a very easy technique to understand Writing an XML file is called as marshaling Reading an XML file is called as unmarshaling Let us see the step by step procedure to perform marshaling & un marshaling. Marshaling As Mentioned above marshal ing means writing xml fil e form java object. The first step i s creating java class from a sc he ma.if we have a schema file required we can create pojo cl assess from it using xsd jar. xsd ja r is ava ilable with java by default .xsd is a binding comp iler which is mentioned ...