我们需要在XML与实体类,DataTable,List之间进行转换,下面是XmlUtil类,该类来自网络并稍加修改。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
using
System;
System.Collections.Generic;
System.Linq;
System.Text;
System.IO;
System.Data;
System.Xml;
System.Xml.Serialization;
/// <summary>
/// Xml序列化与反序列化
/// </summary>
public
class
XmlUtil
{
#region 反序列化
/// <summary>
/// 反序列化
/// </summary>
/// <param name="type">类型</param>
/// <param name="xml">XML字符串</param>
/// <returns></returns>
static
object
Deserialize(Type type,
string
xml)
{
try
{
(StringReader sr =
new
StringReader(xml))
{
XmlSerializer xmldes =
XmlSerializer(type);
return
xmldes.Deserialize(sr);
}
}
catch
(Exception e)
{
return
null
;
}
}
/// <summary>
/// 反序列化
/// </summary>
/// <param name="type"></param>
/// <param name="xml"></param>
/// <returns></returns>
XmlSerializer(type);
xmldes.Deserialize(stream);
}
#endregion
#region 序列化
/// <summary>
/// 序列化
/// </summary>
/// <param name="type">类型</param>
/// <param name="obj">对象</param>
/// <returns></returns>
string
Serializer(Type type,153)!important">object
obj)
{
MemoryStream Stream =
MemoryStream();
XmlSerializer xml =
XmlSerializer(type);
try
{
//序列化对象
xml.Serialize(Stream,obj);
}
(InvalidOperationException)
{
throw
;
}
Stream.Position = 0;
StreamReader sr =
StreamReader(Stream);
str = sr.ReadToEnd();
sr.Dispose();
Stream.Dispose();
str;
}
#endregion
}
|
下面是测试代码:
1. 实体对象转换到Xml
Student
{
Name {
set
;
get
; }
int
Age {
; }
}
Student stu1 =
Student() { Name =
"okbase"
,Age = 10 };
xml = XmlUtil.Serializer(
typeof
(Student),stu1);
Console.Write(xml);
|
2.Xml转换到实体对象
Student stu2 = XmlUtil.Deserialize(
as
Student;
Console.Write(
.Format(
"名字:{0},年龄:{1}"
3.DataTable转换到Xml
猜你在找的XML相关文章 |