posted 21 years ago
There are so many XML DOM parser are available, at free of cost too.These parsers provide API for reading, extracting, editing data to and from a XML file in a very simple format in java language.
Mostly used DOM parsers are from Sun, IBM 's XML 4j , apaches xerces comes with IBM's parsers itself.
what basically parsers do , it allows you to traverse the XML file as a document in tree structure . you can easily create root node, add nodes to that ,add elements ,add attributes etc using different methods in Java.
i hope how it should make some sense to you.
thanx
Deepika