vote up 5 vote down star

I am having a 1GB XML File and want to parse it.If i use XML Textreader or XMLDocument ,result is very slow and some times hangs ...Your answers are welcome

flag

0% accept rate
what good does that shamelessly plugged url do? – grapefrukt Jan 22 at 12:40
Nothing, especially now that it's gone. – Aaron Maenpaa Jan 22 at 12:41

5 Answers

vote up 6 vote down

You'll have to implement custom logic using xmlreader. xmlreader does not load the full XML into memory before using it, which means you can read it from a stream and process it as such.

link|flag
vote up 4 vote down

XmlDocument is not feasible in this scenario as it will attempt to suck that gigabyte into main memory. I'm surprised that you're finding XmlTextReader to be too slow. Have you tried something like the following?

using (XmlTextReader rdr = new XmlTextReader("MyBigFile.txt"))
{
     // use rdr to advance through the document.
}
link|flag
vote up 3 vote down

XMLTextreader isn't supposed to hang as it's stream based and just works on junks of the data.

If it hangs, it may well be that you are doing something wrong when loading the file.

link|flag
It could be hanging due to resource constraints at the OS or filesystem level. – Michael Meadows Jan 22 at 13:58
vote up 1 vote down

I'm not very familiar with this topic, but afaik the XmlReader-classes ought to work fine for your specific problem. They are, after all, optimized for exactly this.

link|flag
vote up 0 vote down

I would just like to back up everyone who promotes XmlReader with a performance comparison that I found:

http://www.nearinfinity.com/blogs/joe_ferner/performance_linq_to_sql_vs.html

link|flag

Your Answer

Get an OpenID
or

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