In What scenarios will you use a DOM parser and SAX parser?
3820
02-Apr-2013
Vijay Shukla
02-Apr-2013In some scenarios, SAX is easily the better choice for quick, less-intensive parsing and processing. In others, the DOM provides an easy-to-use, clean interface to data in a desirable format. You, the developer, must always analyze your application and its purpose to make the correct decision as to which method to use, or how to use both in concert.