Create XML File using C#

Today in C#, I’m going to teach you how to create a program that also creates an XML file using C#. We all know that XML (Extensible Markup Language) is an easy way to create common information formats and share both the format and the data on the World Wide Web or elsewhere. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your program as XMLSample. 2. Next, add only one Button named Button1 and labeled it as "Create XML". You must design your interface like this: design 3. Import System.Xml namespace to access all the xml class.
  1. using System.Diagnostics;
  2. using System;
  3. using System.Windows.Forms;
  4. using System.Collections;
  5. using System.Drawing;
  6. using System.Data;
  7. using System.Collections.Generic;
  8.  
  9.  
  10. using System.Xml;
4. Create a method named createNode that has this parameters (string pID, string pName, string pPrice, XmlTextWriter writer). The XmlTextWriter class here is used to write xml file.
  1. private void createNode(string pID, string pName, string pPrice, XmlTextWriter writer)
  2.                 {
  3.             // write Product as a Start Element
  4.                         writer.WriteStartElement("Product");
  5.             // write Product_id as a Start Element as a content of Product
  6.                         writer.WriteStartElement("Product_id");
  7.             // write a string for Product_id
  8.                         writer.WriteString(pID);
  9.             // end the element of Product_id using /
  10.                         writer.WriteEndElement();
  11.             // write Product_name as a Start Element as a content of Product
  12.                         writer.WriteStartElement("Product_name");
  13.             // write a string for Product_name
  14.                         writer.WriteString(pName);
  15.             // end the element of Product_name  using /
  16.                         writer.WriteEndElement();
  17.             // write Product_price as a Start Element as a content of Product
  18.                         writer.WriteStartElement("Product_price");
  19.             // write a string for Product_price
  20.                         writer.WriteString(pPrice);
  21.             // end the element of Product_price using /
  22.                         writer.WriteEndElement();
  23.             // end the element of Product using /
  24.                         writer.WriteEndElement();
  25.                 }
5. For Button1 for writing an XML File, put this code below.
  1.                 public void Button1_Click(System.Object sender, System.EventArgs e)
  2.                 {
  3.             // instatantiate XmlTextWriter that the file name of the xml file will be product.xml
  4.                         XmlTextWriter writer = new XmlTextWriter("product.xml", System.Text.Encoding.UTF8);
  5.             // set WriteStartDocument to true
  6.                         writer.WriteStartDocument(true);
  7.             // the xml formatting has indention
  8.                         writer.Formatting = Formatting.Indented;
  9.             // 2 indentions
  10.                         writer.Indentation = 2;
  11.             // Make now the first element into "Table"
  12.                         writer.WriteStartElement("Table");
  13.             // we will use the createNode method with the parameters of product id, product name, product price, and the writer variable for  XmlTextWriter
  14.                         createNode("1", "Product 1", "1000", writer);
  15.                         createNode("2", "Product 2", "2000", writer);
  16.                         createNode("3", "Product 3", "3000", writer);
  17.                         createNode("4", "Product 4", "4000", writer);
  18.             // end the element with the word table and using /
  19.                         writer.WriteEndElement();
  20.             // end the file
  21.                         writer.WriteEndDocument();
  22.             //close the file
  23.                         writer.Close();
  24.                 }
Output: output For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards, Engr. Lyndon Bermoy IT Instructor/System Developer/Android Developer/Freelance Programmer If you have some queries, feel free to contact the number or e-mail below. Mobile: 09488225971 Landline: 826-9296 E-mail:[email protected] Add and Follow me on Facebook: https://www.facebook.com/donzzsky Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

Add new comment