I have requirement where we are getting an Xml file and want that data in java Object.
what is the best way i can do it ?
Thanks in advance.
Regards,
Prakash Pawar.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
Apache Commons Digester is a powerful library for this if you only need the XML-->Java direction. If you need both directions, then the JAXB API can help.
You can even try Apache's XmlBeans which easily converts the xml in to java objects.
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32654
4
posted
0
Welcome to the Ranch Kannan Sekar
Emil dombagolla
Greenhorn
Joined: May 26, 2010
Posts: 3
posted
0
Use can use jaxb
K Sekar
Greenhorn
Joined: Sep 08, 2006
Posts: 8
posted
0
Thank you Campbell Ritchie.
xsunil kumar
Ranch Hand
Joined: Dec 14, 2009
Posts: 125
posted
0
You can use JAXB to read xml and set values in java object. For using jaxb , you need to create xsd files.
There are multiple sites which will tell you how to create xsd files.
Ashish P Gandhi
Greenhorn
Joined: May 25, 2010
Posts: 2
posted
0
Actually depends on how complex your xml is....if its very simple xml, then you can just parse the xml and create your object.
If its complex, then JAXb would be a better option, for creating an xsd, there are tools available which make it simpler ( Altova's XMLSpy is a good option for free trial)