Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am very new to C#. I have XML file (text.xml). I want to read that in XmlDocument and store the stream in string variable. Can anyone help me, please?

share|improve this question
Are "xml into document" and "stream into string" related in any way? – Henk Holterman Feb 1 '12 at 23:38
I am very new to c# OK very new to google? This is what i get msdn.microsoft.com/en-us/library/c445ae5y(v=vs.80).aspx when I google "xmldocument example" – L.B Feb 1 '12 at 23:46
thank you both for your help. – AJP Feb 1 '12 at 23:52

4 Answers

up vote 19 down vote accepted

Use XmlDocument.Load() method to load XML from your file. Then use XmlDocument.InnerXml property to get XML string.

XmlDocument doc = new XmlDocument();
doc.Load("path to your file");
string xmlcontents = doc.InnerXml;
share|improve this answer
excellent solution – Nirman Jan 8 at 10:21

If your .NET version is newer than 3.0 you can try using System.Xml.Linq.XDocument instead of XmlDocument. It is easier to process data with XDocument.

share|improve this answer
thank you for your help. – AJP Feb 1 '12 at 23:52

The quickest way, not for very large files:

 string xmlText = File.ReadAllText(fileName);
 var doc = new XmlDocument();
 doc.LoadXml(xmlText);

But before you proceed, there are 2 XML libraries in .NET, you might like the newer XDocument :

 var doc = XDocument.Load(fileName);

XDocument (XLinq or Linq-to-XML) is easier to use and usually faster.

share|improve this answer
Load method takes URL for the file containing the XML document to load, not the xml contents. – stim Feb 1 '12 at 23:42
You're right, fixed. – Henk Holterman Feb 1 '12 at 23:44
thank you for your help. – AJP Feb 1 '12 at 23:52

Hope you dont mind Xml.Linq and .net3.5+

XElement ele = XElement.Load("text.xml");
String aXmlString = ele.toString(SaveOptions.DisableFormatting);

Depending on what you are interested in, you can probably skip the whole 'string' var part and just use XLinq objects

share|improve this answer
thank you for your help. – AJP Feb 1 '12 at 23:52

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.