« Return to Thread: xml parse from string content performance problem

xml parse from string content performance problem

by Uuganbold :: Rate this Message:

Reply to Author | View in Thread

Hi all.

I have string contains xml content. I use dom xml parser. Below is my parse code.

DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc=builder.parse(new InputSource(new StringReader(xmlText)));

It works but very slow. too slow. If i write xml to file and parse from file like builder.parse(filePath) then
working time is around 100ms. If i parse from string working time around 7 second.

How can i fix my problem

 « Return to Thread: xml parse from string content performance problem