I know the difference between Sax and Dom is pretty substantial regarding parsing Xml, but what about creating ones ? is there even a way to create new Xml using Sax or that if i want to create new Xml file based on my data in my program , i will have to use DOM ?
Thanks
SAX is, quoting wikipedia :
i.e. SAX can be great for reading an XML document, but if you want to write one, you’ll probably be using DOM.