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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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 |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|