I am trying to parse an XML file with 1000 elements using DOM API in Java. It takes 30 seconds to process the XML file.
1 element, for eg store is the root and it has around 15 children like store name, store count, store location, etc...
Is there any other API that can be used to make the whole thing faster?
How about using JAXB (I do not know much about JAXB but I am told by my peers to consider it)?