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

How to use .xml file in applet coding? I want to save some context in .xml file in java-applet programming..... I want to make the changes in that file through coding. how to do this?

share|improve this question

3 Answers

Your question is too broad, however if you are looking at how to process XML files with Java, then you should probably look at XML APIs for Java, for example jdom.

Tutorial: A good starting point to learn jdom

share|improve this answer
Can you send me sample code? – Chetan Mar 24 '10 at 4:09
Sample code : java2s.com/Code/Java/XML/SimpleexampleofusingJDOM.htm scroll down a little and you'll find more examples – Soufiane Hassou Mar 24 '10 at 4:38

Try Apache XMLBeans. It converts between an XML file and a Java object so that you can work with the XML data in a simpler way.

share|improve this answer

You could also have a look at JAXB (http://jaxb.dev.java.net, http://en.wikipedia.org/wiki/JAXB) which also is a Java to XML binding component. Advantage: JAXB is part of SE version 1.6.

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.