The default methods for dealing with xml in c# seem incredibly crude to me, leading me to suspect that I must be missing something in my searches. What is considered the standard best practices to parse xml files in c#?

link|improve this question
2  
What methods do you not like? "Dealing with XML" means what? generating it? parsing it? Creating objects from XML documents (XML data binding)? Something else? Can you be specific? – Cheeso Feb 27 '09 at 6:07
This should not have been closed. First, it is splitting hairs to say that a question about best practices doesn't "involve facts, references, or specific expertise." Second, with 108 upvotes and well over 100 votes for the answers, it is obvious that the community finds this a worthwhile question! – Mark Brittingham May 22 at 15:42
feedback

closed as not constructive by Will Apr 12 at 15:04

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

8 Answers

up vote 74 down vote accepted

I'd use LINQ to XML if you're in .NET 3.5.

link|improve this answer
9  
Here is an updated link for VS 2010 as the above is broken msdn.microsoft.com/en-us/library/bb387098.aspx – Toymakerii Aug 18 '10 at 14:10
Thanks, updated – Jon Galloway Aug 19 '10 at 20:58
feedback

it's very simple, I know this is standard methods but you can create your own library to deal with that much better. Here is some examples:

XmlDocument xmlDoc= new XmlDocument(); //* create an xml document object.
xmlDoc.Load("yourXMLFile.xml"); //* load the XML document from the specified file.

//* Get elements.
XmlNodeList girlAddress = xmlDoc.GetElementsByTagName("gAddress");
XmlNodeList girlAge = xmlDoc.GetElementsByTagName("gAge"); 
XmlNodeList girlCellPhoneNumber = xmlDoc.GetElementsByTagName("gPhone");

//* Display the results.
Console.WriteLine("Address: " + girlAddress[0].InnerText);
Console.WriteLine("Age: " + girlAge[0].InnerText);
Console.WriteLine("Phone Number: " + girlCellPhoneNumber[0].InnerText);

Also there are some other methods to work with. f.ex here. And I think there are no one best method to do this, you always need to choose it by your self, what is most suitable for you.

link|improve this answer
8  
+1 for mentioning XmlDocument, which is much more convenient than serialisation interfaces in some cases. If you are after one specific element, you can access child elements with the indexer: xmlDoc["Root"], and these can be chained: xmlDoc["Root"]["Folder"]["Item"] to dig down the hierarchy (although it's sensible to validate that these elements actually exist) – Jason Williams Mar 20 '10 at 14:02
feedback

Use a good XSD Schema to create a set of classes with xsd.exe and use an XmlSerializer to create a object tree out of your XML and vice versa. If you have few restrictions on your model, you could even try to create a direct mapping between you model classes and the XML with the Xml*Attributes.

There is an introductory article about XML Serialisation on MSDN.

Performance tip: Constructing an XmlSerializer is expensive. Keep a reference to your XmlSerializer instance if you intend to parse/write multiple XML files.

link|improve this answer
David, I've always preferred this way... Unfortuantely, Xsd.exe screws up the class names which I've to go and modify by hand. This, of course, leaves my classes no longer 'auto generated'... Any suggestions for forcing XSD to customize tag names during generation? Or perhaps another tool to run? – Vyas Bharghava Nov 13 '08 at 0:46
feedback

What's wrong with XmlTextReader, XmlReader, XmlNodeReader and the System.Xml.XPath namespace? (XPathNavigator, XPathDocument, XPathExpression, XPathnodeIterator)?

Usually XPath makes reading XML easier, which is what you might be looking for. Sometimes I cry

link|improve this answer
5  
What's wrong with them? Everything. It's a step above grovelling through the raw xml by hand, but only just. – Wedge Sep 11 '08 at 5:29
I disagree, especially regarding XPath – Vinko Vrsalovic Sep 11 '08 at 5:34
1  
OK, well maybe XPath is an exception. Still, using the basic APIs is a lot better than stabbing yourself in the eye with a pointy stick, but not by much. For small, simple xml files (which some may say all xml files should be), they're almost more trouble than they're worth. – Wedge Sep 11 '08 at 7:15
17  
Providing arguments instead of analogies might work better. – Vinko Vrsalovic Sep 11 '08 at 7:57
SAX verses DOM. The methods you mention are SAX, which has different purpose than DOM. Both are good depending on the situation. I feel ya wedge when it comes to OpenXML SDK for excel :). – TamusJRoyce Oct 3 '11 at 18:38
feedback

If you're processing a large amount of data (many megabytes) then you want to be using XmlReader to stream parse the XML. Anything else (XPathNavigator, XElement, XmlDocument and even XmlSerializer if you keep the full generated object graph) will result in high memory usage and also a very slow load time. Of course, if you need all the data in memory anyway, then you may not have much choice.

link|improve this answer
feedback

I'm not sure whether "best practice for parsing xml" exists. There are numerous technologies suited for different situations. Which way to use depends on concrete scenario.

You can go with XLinq, XmlReader, XPathNavigator or even regular expressions. If you elaborate your needs I can try to give some suggestions.

link|improve this answer
feedback

If you're .NET 2.0, try XmlReader and it's subclasses XmlTextReader, XmlValidatingReader provide a fast, lightweight (memory usage etc), forward only way to parse an XML file.

If you need XPath capabilities try the XPathNavigator. If you need the entire document in memory try XmlDocument.

link|improve this answer
feedback

Here are some C# XML samples, they may help you.

http://csharp.net-informations.com/xml/csharp-xmltutorial.htm

link|improve this answer
feedback

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