Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm able to create java object from an xml schema and creating a new xml is also working.

Now using my java object how can i search for a particular tag and update it back into xml?

share|improve this question
Go through the basic tutorial on JAXB jaxb.java.net/tutorial. If you are stuck at certain point discuss that. – AurA Jun 7 '12 at 6:11

1 Answer

You can use an instance of Marshaller to write the object back to XML. If you want to apply changes back to an existing DOM then you can use an instance of Binder. Binder is useful when there is unmapped content in your document that you wish to preserve.

For More Information

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.