In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article is about how to serialize and deserialize using XMLSerialize. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Concept: XML serialization is the process of converting public fields and properties into a sequential format (in this case, XML) for storage or transmission. Deserialization is the re-creation of objects in the original state from XML.
The code is as follows:
Class SerializeDemo
{
Static void Main ()
{
EmployeeCollection employeeCollection = new EmployeeCollection ()
{
Employees = Employeer.Employees ()
}
XmlSerializer serialize = new XmlSerializer (typeof (EmployeeCollection))
String filePath = @ "E:\ PProject\ Test\ Employee.xml"
SerializeEmployee (serialize, filePath, employeeCollection)
DeserializeEmployee (serialize, filePath)
}
Static void SerializeEmployee (XmlSerializer serialize, string filePath, EmployeeCollection employeeCollection)
{
Using (FileStream fs = new FileStream (filePath, FileMode.Create, FileAccess.Write))
{
Serialize.Serialize (fs, employeeCollection)
}
}
Static void DeserializeEmployee (XmlSerializer serialize,string filePath)
{
Using (FileStream fs = new FileStream (filePath, FileMode.Open, FileAccess.Read))
{
EmployeeCollection collection = (EmployeeCollection) serialize.Deserialize (fs)
Collection.Employees.ForEach (e = > Console.WriteLine ("Name: {0}, Gender: {1}, Age: {2}, Education: {3}", e.userName, e.gender, e.age, e.education))
}
}
}
[Serializable]
Public class EmployeeCollection
{
Public List Employees {get; set;}
}
[Serializable]
Public class Employeer
{
Public string userId {get; set;}
Public string userName {get; set;}
Public string gender {get; set;}
Public int age {get; set;}
Public List workExperience {get; set;}
Public string education {get; set;}
Public static List Employees ()
{
Return new List ()
{
New Employeer ()
{
UserId = "0001"
UserName = "guoHu"
Gender= "Man"
Age=25,education= "underGraduate"
WorkExperience = WorkExperience.GetWorkExperience ("0001")
}
}
}
}
[Serializable]
Public class WorkExperience
{
Public string userId {get; set;}
Public string companyName {get; set;}
Public string seniority {get; set;}
Public static List GetWorkExperience (string userId)
{
List workExperience = new List ()
Unity unity = Unity.GetInstance ()
DataTable table = new DataTable ()
Unity.GetTable (out table)
Var experiences = (from experience in table.AsEnumerable ())
Where experience.Field ("UserId") = = userId
Select new
{
CompanyName = experience.Field ("CompanyName")
Seniority = experience.Field ("Seniority")
}) .ToList ()
Experiences.ForEach (e = > workExperience.Add (new WorkExperience () {companyName = e.companyName, seniority = e.seniority}))
Return workExperience
}
}
Public class Unity
{
Public static DataTable tables = new DataTable ()
Public static DataRow dr
Public static DataColumn dc = new DataColumn ()
Public static object objLock = new object ()
Public static Unity unityInstance
Private Unity ()
{
}
Public static Unity GetInstance ()
{
If (unityInstance = = null)
{
Lock (objLock)
{
If (unityInstance = = null)
{
UnityInstance = new Unity ()
}
}
}
Return unityInstance
}
Public void GetTable (out DataTable dt)
{
UnityInstance.CreateTable ()
Dr = tables.NewRow ()
Dr ["UserId"] = "0001"
Dr ["CompanyName"] = "WireSoft"
Dr ["Seniority"] = "2012.02-2012.05"
Tables.Rows.Add (dr)
Dr = tables.NewRow ()
Dr ["UserId"] = "0001"
Dr ["CompanyName"] = "Jin Xun"
Dr ["Seniority"] = "2009.07-2011.02"
Tables.Rows.Add (dr)
Dr = tables.NewRow ()
Dr ["UserId"] = "0002"
Dr ["CompanyName"] = "Hua Wei"
Dr ["Seniority"] = "2011.07 -"
Tables.Rows.Add (dr)
Dt = tables.Copy ()
}
Public void CreateTable ()
{
Dc = new DataColumn ("UserId", System.Type.GetType ("System.String"))
Tables.Columns.Add (dc)
Dc = new DataColumn ("companyName", System.Type.GetType ("System.String"))
Tables.Columns.Add (dc)
Dc = new DataColumn ("seniority", System.Type.GetType ("System.String"))
Tables.Columns.Add (dc)
}
}
Thank you for reading! On "how to use XMLSerialize serialization and deserialization" this article is shared here, I hope the above content can be of some help to you, so that you can learn more knowledge, if you think the article is good, you can share it out for more people to see it!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.