using System;
using System.IO;
using System.Xml.Linq;
using System.Xml.Serialization;
namespace Znyc.Recruitment.Admin.Commons.Helpers
{
///
/// XML文件与对象相互转化操作
///
public class XmlConverter
{
///
/// 将对象转换为xml格式
///
///
///
/// xml文件路径
///
public static void Serialize(T obj, string xmlFilePath)
{
FileStream xmlfs = null;
try
{
XmlSerializer serializer = new XmlSerializer(typeof(T));
xmlfs = new FileStream(xmlFilePath, FileMode.Create, FileAccess.Write, FileShare.ReadWrite);
serializer.Serialize(xmlfs, obj);
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (xmlfs != null)
{
xmlfs.Close();
}
}
}
///
/// 将xml格式转为对象
///
///
/// xml文件路径
///
public static T Deserialize(string xmlFilePath)
{
XDocument doc = XDocument.Load(xmlFilePath);
XmlSerializer serializer = new XmlSerializer(typeof(T));
StringReader reader = new StringReader(doc.ToString());
T result = (T)serializer.Deserialize(reader);
reader.Close();
reader.Dispose();
return result;
}
}
}