I want to create a Java bean from the XML file which I will get as input at runtime. Can anyone please suggest me the generic way for doing the XML to Java bean conversion?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Typically java classes can be generated from XSD. So, if you do not have it yet you should first write it manually or generate from your XML sample. There are many tools that do this. I know for example XMLSpy But I believe that a lot of others exist. Then you should generate your java classes. The are many ways to do this too. For example JAXB (as it was mentioned by @Chris Jester-Young) or Castor. |
|||
|
|