I am familiar with DOM parsing and somewhat wit SAX parsing and I am unsure if I wish to use either of these.
From what I understand DOM is the only one that will allow manipulation of a xml file. My issue is that I need to be able to modify a file, but the XML file size may be extremelely large. It may range from 100 lines to 10000+ lines.
The thing is, i do not have many changes to make and am trying to avoid the overhead and potential large run-time I may run into with DOM. Is anyone aware of an alternate way I may parse or traverse a XML file, while maintaining the ability to modify it.
Thanks in advance.
Diogo
From what I understand DOM is the only one that will allow manipulation of a xml file. My issue is that I need to be able to modify a file, but the XML file size may be extremelely large. It may range from 100 lines to 10000+ lines.
The thing is, i do not have many changes to make and am trying to avoid the overhead and potential large run-time I may run into with DOM. Is anyone aware of an alternate way I may parse or traverse a XML file, while maintaining the ability to modify it.
Thanks in advance.
Diogo