C# Language
XmlDocument और System.Xml नाम स्थान
खोज…
बेसिक XML दस्तावेज़ सहभागिता
public static void Main()
{
var xml = new XmlDocument();
var root = xml.CreateElement("element");
// Creates an attribute, so the element will now be "<element attribute='value' />"
root.SetAttribute("attribute", "value");
// All XML documents must have one, and only one, root element
xml.AppendChild(root);
// Adding data to an XML document
foreach (var dayOfWeek in Enum.GetNames((typeof(DayOfWeek))))
{
var day = xml.CreateElement("dayOfWeek");
day.SetAttribute("name", dayOfWeek);
// Don't forget to add the new value to the current document!
root.AppendChild(day);
}
// Looking for data using XPath; BEWARE, this is case-sensitive
var monday = xml.SelectSingleNode("//dayOfWeek[@name='Monday']");
if (monday != null)
{
// Once you got a reference to a particular node, you can delete it
// by navigating through its parent node and asking for removal
monday.ParentNode.RemoveChild(monday);
}
// Displays the XML document in the screen; optionally can be saved to a file
xml.Save(Console.Out);
}
XML दस्तावेज़ से पढ़ना
एक उदाहरण XML फ़ाइल
<Sample>
<Account>
<One number="12"/>
<Two number="14"/>
</Account>
<Account>
<One number="14"/>
<Two number="16"/>
</Account>
</Sample>
इस XML फ़ाइल से पढ़ना:
using System.Xml;
using System.Collections.Generic;
public static void Main(string fullpath)
{
var xmldoc = new XmlDocument();
xmldoc.Load(fullpath);
var oneValues = new List<string>();
// Getting all XML nodes with the tag name
var accountNodes = xmldoc.GetElementsByTagName("Account");
for (var i = 0; i < accountNodes.Count; i++)
{
// Use Xpath to find a node
var account = accountNodes[i].SelectSingleNode("./One");
if (account != null && account.Attributes != null)
{
// Read node attribute
oneValues.Add(account.Attributes["number"].Value);
}
}
}
XmlDocument बनाम XDocument (उदाहरण और तुलना)
Xml फ़ाइल के साथ इंटरेक्ट करने के कई तरीके हैं।
- Xml दस्तावेज़
- XDocument
- XmlReader / XmlWriter
LINQ से XML से पहले हमें XML में जोड़तोड़ के लिए XMLDocument का उपयोग किया गया था जैसे कि विशेषताएँ, तत्व और इतने पर जोड़ना। अब LINQ to XML एक ही तरह की चीज के लिए XDocument का उपयोग करता है। सिंटैक्स XMLDocument की तुलना में बहुत आसान हैं और इसके लिए कम से कम कोड की आवश्यकता होती है।
इसके अलावा XDocument XmlDocument के रूप में तेजी से मच रहा है। XmlDoucument एक XML दस्तावेज़ के क्वेरी के लिए एक पुराना और गंदा समाधान है।
मैं XmlDocument वर्ग और XDocument वर्ग वर्ग के कुछ उदाहरण दिखाने जा रहा हूँ :
XML फ़ाइल लोड करें
string filename = @"C:\temp\test.xml";
XmlDocument
XmlDocument _doc = new XmlDocument();
_doc.Load(filename);
XDocument
XDocument _doc = XDocument.Load(fileName);
XmlDocument बनाएँ
XmlDocument
XmlDocument doc = new XmlDocument();
XmlElement root = doc.CreateElement("root");
root.SetAttribute("name", "value");
XmlElement child = doc.CreateElement("child");
child.InnerText = "text node";
root.AppendChild(child);
doc.AppendChild(root);
XDocument
XDocument doc = new XDocument(
new XElement("Root", new XAttribute("name", "value"),
new XElement("Child", "text node"))
);
/*result*/
<root name="value">
<child>"TextNode"</child>
</root>
XML में नोड का इनर टेक्स्ट बदलें
XmlDocument
XmlNode node = _doc.SelectSingleNode("xmlRootNode");
node.InnerText = value;
XDocument
XElement rootNote = _doc.XPathSelectElement("xmlRootNode");
rootNode.Value = "New Value";
संपादित करने के बाद फ़ाइल सहेजें
किसी भी परिवर्तन के बाद xml को सुरक्षित करना सुनिश्चित करें।
// Safe XmlDocument and XDocument
_doc.Save(filename);
XML से पुनर्प्राप्त मान
XmlDocument
XmlNode node = _doc.SelectSingleNode("xmlRootNode/levelOneChildNode");
string text = node.InnerText;
XDocument
XElement node = _doc.XPathSelectElement("xmlRootNode/levelOneChildNode");
string text = node.Value;
सभी बाल तत्वों से गुणात्मक मूल्य जहां विशेषता = कुछ है।
XmlDocument
List<string> valueList = new List<string>();
foreach (XmlNode n in nodelist)
{
if(n.Attributes["type"].InnerText == "City")
{
valueList.Add(n.Attributes["type"].InnerText);
}
}
XDocument
var accounts = _doc.XPathSelectElements("/data/summary/account").Where(c => c.Attribute("type").Value == "setting").Select(c => c.Value);
एक नोड संलग्न करें
XmlDocument
XmlNode nodeToAppend = doc.CreateElement("SecondLevelNode");
nodeToAppend.InnerText = "This title is created by code";
/* Append node to parent */
XmlNode firstNode= _doc.SelectSingleNode("xmlRootNode/levelOneChildNode");
firstNode.AppendChild(nodeToAppend);
/*After a change make sure to safe the document*/
_doc.Save(fileName);
XDocument
_doc.XPathSelectElement("ServerManagerSettings/TcpSocket").Add(new XElement("SecondLevelNode"));
/*After a change make sure to safe the document*/
_doc.Save(fileName);