Reading and writing to an XML file

Reading and writing to an XML file

Please let other users know how useful this tip is by rating it below. And, submit your own .NET tip or code!

ADO provides a rich infrastructure for interacting with a wide variety of data, including XML. With DataSets we can now read and write to an XML file with ease.

The following code sample demonstrates how to read and write to an XML file. We are going to read and write an XML file with the details as under:

<?xml version="1.0" standalone="yes" ?> 

  <Detail>
    <Person>
      <Name>Manish</Name>
      <Age>22</Age>
 </Person>
</Detail>

Class : xml.vb Imports System Class WriteXML Shared Sub main() Dim objDataSet As New System.Data.DataSet() Dim strVirtualPath As String = "t.xml" 'Load the XML file in the data set objDataSet.ReadXml("xmlfile.xml") 'Read the XML content on the console Console.Write(objDataSet.GetXml) 'Get data from the user to be saved in the

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

XML file Console.Write("Enter Name : ") Dim fname, age As String fname = Console.ReadLine Console.Write("Enter Age : ") age = Console.ReadLine Console.Write(fname & age) Dim v(1) As String v(0) = fname v(1) = age 'Add the data to the data set objDataSet.Tables(0).Rows.Add(v) 'Write to updated data back to the XMl file objDataSet.WriteXml("xmlfile.xml") Console.Write(objDataSet.GetXml) End Sub End Class

Compile the file as: vbc /r:system.dll /r:system.data.dll /r:system.xml.dll xml.vb


Source: DotNetExtreme.com

This was first published in June 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.