通过序列化和反序列化泛型数据实体集合来实现持久化数据对象的方法 我们在平时使用数据库的时候,经常会碰到一个问题,就是不希望数据实体对象插入数据库中, 却有想持久化的时候,那么就可以用序列化成 XML字符串,来保存到其他地方,由于生成的是字符串,所以可以保存到任意我们想保存的地方。比如 asp.net的ViewState,cookie,cache等。 首先,我们定义一个数据实体类。 class Entity private double price; List<Entity> list = new List<Entity>(); public static string Serialize<BusinessObject>(List<BusinessObject> GenericList) string str = Serialize<Entity>(list); <Root> public static List<BusinessObject> Deserialize<BusinessObject>(string XmlStr) List<Entity> list = Deserialize<Entity>(str); 本文只是给大家介绍了序列化List<>对象的简单方法,用的时候要根据自己的情况而定。
{
public Entity()
{}
private int id;
public int Id
{
get
{
return id;
}
set
{
id = value;
}
}
private string name;
public string Name
{
get
{
return name;
}
set
{
name = value;
}
}
public double Price
{
get
{
return price;
}
set
{
price = value;
}
}
}
于是将他插入到List<Entity>对象中
Entity obj = new Entity();
obj.Id = 1;
obj.Name = “test”;
obj.Price = 3.23;
list.Add(obj);
这样,一个List<Entity>对象就创建成功了,下面我们来将他序列化
{
XmlDocument result = new XmlDocument();
result.LoadXml(“<Root></Root>”);
foreach (BusinessObject obj in GenericList)
{
XmlElement Item = result.CreateElement(“Item”);
PropertyInfo[] properties = obj.GetType().GetProperties();
foreach (PropertyInfo property in properties)
{
if (property.GetValue(obj, null) != null)
{
XmlElement element = result.CreateElement(property.Name);
element.SetAttribute(“Type”, property.PropertyType.Name);
element.InnerText = property.GetValue(obj, null).ToString();
Item.AppendChild(element);
}
}
result.DocumentElement.AppendChild(Item);
}
return result.InnerXml;
}
然后我们调用这个方法
生成的XML文件为:
<Item>
<Id Type=”Int32″>1</Id>
<Name Type=”String”>test</Name>
<Price Type=”Double”>3.23</Price>
</Item>
</Root>
下面,我们根据上面生成的xml文件,将他反序列化,生成刚才的List<Entity>对象
{
List<BusinessObject> result = new List<BusinessObject>();
XmlDocument XmlDoc = new XmlDocument();
XmlDoc.LoadXml(XmlStr);
foreach (XmlNode ItemNode in XmlDoc.GetElementsByTagName(“Root”).Item(0).ChildNodes)
{
BusinessObject item = Activator.CreateInstance<BusinessObject>();
PropertyInfo[] properties = typeof(BusinessObject).GetProperties();
foreach (XmlNode propertyNode in ItemNode.ChildNodes)
{
string name = propertyNode.Name;
string type = propertyNode.Attributes[“Type”].Value;
string value = propertyNode.InnerXml;
foreach (PropertyInfo property in properties)
{
if (name == property.Name)
{
property.SetValue(item,Convert.ChangeType(value,property.PropertyType), null);
}
}
}
result.Add(item);
}
return result;
}
然后我们调用这个方法:
完了。
http://www.cnblogs.com/kchen/archive/2006/11/04/550382.html
通过序列化和反序列化泛型数据实体集合来实现持久化数据对象的方法 _asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 通过序列化和反序列化泛型数据实体集合来实现持久化数据对象的方法 _asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧