Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)?

share|improve this question
have you tried using SAX instead of DOM? Try Apache Digester library. – Nishu Oct 20 '11 at 15:56
1  
30 seconds for 1000 elements seems excessive. But the problem is probably in your "processing", not the API. How big is the file? Can you provide some code? – paulsm4 Oct 20 '11 at 15:57
What do you want to do with the parsed xml? – bpgergo Oct 20 '11 at 15:58
constructing Store objects and adding it to list.. – user2434 Oct 20 '11 at 16:01

2 Answers

A 30 second delay during parsing is usually caused by fetching the DTD from the web, especially if it's one of the standard DTDs (like XHTML) found on the w3C web site. If your XML references one of these DTDs you need to make sure that the parser is redirected to a local copy, by using catalogs.

share|improve this answer

You can try using JSOUP api since you want a selected elements in your XML file. JSOUP will work for parsing XML also. It is much faster and it is easy to retrieve element value. JSOUP You just need to add the JAR file to your build path.

I will like you to refer from this link also.It will be a great help.HTML Parsers

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.