| Author |
merge input back to xml file
|
Holmes Wong
Ranch Hand
Joined: Feb 18, 2002
Posts: 163
|
|
Hi, I am transforming xml file into a html file, after get user input, I try to merge user input to the original xml file. Instead of scanning xml file and locating tags (nasty coding), is there a better way to do it? I am using xerces+sax. Is there a way like: build a tree for xml file, add new nodes (input) to the tree, and transform it back to xml file with added content? thanks
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
|
|
What you are describing is processing with the DOM - Document Object Model (tree) in which the entire XML document resides in memory and can be directly manipulated. The programming style is completely different from SAX but can be done with the same Xerces library or the classes built into Java 1.4. Bill
|
Java Resources at www.wbrogden.com
|
 |
Holmes Wong
Ranch Hand
Joined: Feb 18, 2002
Posts: 163
|
|
Originally posted by William Brogden: What you are describing is processing with the DOM - Document Object Model (tree) in which the entire XML document resides in memory and can be directly manipulated. The programming style is completely different from SAX but can be done with the same Xerces library or the classes built into Java 1.4. Bill
Thanks, bill for your reply. Gonna research about it.
|
 |
 |
|
|
subject: merge input back to xml file
|
|
|