C Method for Transforming between XML and Entity Class of Serialization and Deserialization

  • 2021-10-16 02:28:56
  • OfStack

This article illustrates the method of C # to realize the conversion between XML and entity class. Share it for your reference, as follows:


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Data;
using System.Xml;
using System.Xml.Serialization;
/// <summary>
/// Xml Serialization and deserialization 
/// </summary>
public class XmlUtil
{
  #region  Deserialization 
  /// <summary>
  ///  Deserialization 
  /// </summary>
  /// <param name="type"> Type </param>
  /// <param name="xml">XML String </param>
  /// <returns></returns>
  public static object Deserialize(Type type, string xml)
  {
    try
    {
      using (StringReader sr = new StringReader(xml))
      {
        XmlSerializer xmldes = new XmlSerializer(type);
        return xmldes.Deserialize(sr);
      }
    }
    catch (Exception e)
    {
      return null;
    }
  }
  /// <summary>
  ///  Deserialization 
  /// </summary>
  /// <param name="type"></param>
  /// <param name="xml"></param>
  /// <returns></returns>
  public static object Deserialize(Type type, Stream stream)
  {
    XmlSerializer xmldes = new XmlSerializer(type);
    return xmldes.Deserialize(stream);
  }
  #endregion
  #region  Serialization 
  /// <summary>
  ///  Serialization 
  /// </summary>
  /// <param name="type"> Type </param>
  /// <param name="obj"> Object </param>
  /// <returns></returns>
  public static string Serializer(Type type, object obj)
  {
    MemoryStream Stream = new MemoryStream();
    XmlSerializer xml = new XmlSerializer(type);
    try
    {
      // Serialize object 
      xml.Serialize(Stream, obj);
    }
    catch (InvalidOperationException)
    {
      throw;
    }
    Stream.Position = 0;
    StreamReader sr = new StreamReader(Stream);
    string str = sr.ReadToEnd();
    sr.Dispose();
    Stream.Dispose();
    return str;
  }
  #endregion
}


/*  Entity object conversion to Xml */
public class Student
{
  public string Name { set; get; }
  public int Age { set; get; }
}
Student stu1 = new Student() { Name = "okbase", Age = 10 };
string xml = XmlUtil.Serializer(typeof(Student), stu1);
Console.Write(xml);
/* Xml Convert to Entity Object  */
Student stu2 = XmlUtil.Deserialize(typeof(Student), xml) as Student;
Console.Write(string.Format(" Name :{0}, Age :{1}", stu2.Name, stu2.Age));
/* DataTable Convert to Xml */
//  Generate DataTable Object is used to test 
DataTable dt1 = new DataTable("mytable");  //  Must specify DataTable Name 
dt1.Columns.Add("Dosage", typeof(int));
dt1.Columns.Add("Drug", typeof(string));
dt1.Columns.Add("Patient", typeof(string));
dt1.Columns.Add("Date", typeof(DateTime));
//  Add Row 
dt1.Rows.Add(25, "Indocin", "David", DateTime.Now);
dt1.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
dt1.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
dt1.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
dt1.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);
//  Serialization 
xml = XmlUtil.Serializer(typeof(DataTable), dt1);
Console.Write(xml);
/* Xml Convert to DataTable */
//  Deserialization 
DataTable dt2 = XmlUtil.Deserialize(typeof(DataTable), xml) as DataTable;
//  Output test results 
foreach (DataRow dr in dt2.Rows)
{
  foreach (DataColumn col in dt2.Columns)
  {
    Console.Write(dr[col].ToString() + " ");
  }
  Console.Write("\r\n");
}
/* List Convert to Xml */
//  Generate List Object is used to test 
List<Student> list1 = new List<Student>(3);
list1.Add(new Student() { Name = "okbase", Age = 10 });
list1.Add(new Student() { Name = "csdn", Age = 15 });
//  Serialization 
xml = XmlUtil.Serializer(typeof(List<Student>), list1);
Console.Write(xml);
/* Xml Convert to List */
List<Student> list2 = XmlUtil.Deserialize(typeof(List<Student>), xml) as List<Student>;
foreach (Student stu in list2)
{
  Console.WriteLine(stu.Name + "," + stu.Age.ToString());
}


protected void Page_Load(object sender, EventArgs e)
{
  string strTest = @"<Relationships>
   <VariationParent xmlns='http://www.microsoft.com/schema/Products/2011-10-01'>
    <Identifiers>
     <MarketplaceASIN>
      <MarketplaceId>ATVPDKIKX0DER</MarketplaceId>
      <ASIN>B00K69WURQ</ASIN>
     </MarketplaceASIN>
     <MarketplaceASIN>
      <MarketplaceId>TBVPDKIKX0DER</MarketplaceId>
      <ASIN>C00K69WURQ</ASIN>
     </MarketplaceASIN>
     <MarketplaceASIN>
      <MarketplaceId>KlVPDKIKX0DER</MarketplaceId>
      <ASIN>D00K69WURQ</ASIN>
     </MarketplaceASIN>
    </Identifiers>
   </VariationParent>
  </Relationships>";
  TextBox1.Text = "";
  XmlDocument doc = new XmlDocument();
  doc.LoadXml(strTest);
  XmlElement root = doc.DocumentElement;
  // Used with namespaces XML Operation 
  XmlNamespaceManager nsmgr = new XmlNamespaceManager(doc.NameTable);
  nsmgr.AddNamespace("ab", "http://www.microsoft.com/schema/Products/2011-10-01");
  XmlNodeList macthNodes = root.SelectNodes("//ab:Identifiers/ab:MarketplaceASIN", nsmgr);
  for (int i = 0; i < macthNodes.Count; i++)
  {
    // Delete the generated namespace, build the standard XML . 
    string matchNode = CleanXmlnsTag(macthNodes[i].OuterXml);
    MarketplaceASIN ma = XmlUtil.Deserialize(typeof(MarketplaceASIN), matchNode) as MarketplaceASIN;
    if (ma != null)
    {
      Response.Write(ma.MarketplaceId + "---------" + ma.ASIN + "<br/>");
    }
  }
}
/*  Entity object  */
public class MarketplaceASIN
{
  public string MarketplaceId { set; get; }
  public string ASIN { set; get; }
}
protected string CleanXmlnsTag(string xml)
{
  xml = xml.Replace("xmlns=\"http://www.microsoft.com/schema/Products/2011-10-01\"", "");
  return xml;
}

PS: Here we recommend several online tools about xml operation for free use. I believe it can be used in future development:

Online XML Formatting/Compression Tool:
http://tools.ofstack.com/code/xmlformat

Online XML/JSON Interconversion Tool:
http://tools.ofstack.com/code/xmljson

xml code online formatting beautification tool:
http://tools.ofstack.com/code/xmlcodeformat

HTML/XML Escape Character Comparison Table:
http://tools.ofstack.com/table/html_escape

For more readers interested in C # related content, please check the topics on this site: "Summary of XML File Operation Skills in C #", "C # Common Control Usage Tutorial", "WinForm Control Usage Summary", "C # Data Structure and Algorithm Tutorial", "C # Object-Oriented Programming Introduction Tutorial" and "C # Programming Thread Use Skills Summary"

I hope this article is helpful to everyone's C # programming.


Related articles: