xmlµÄÐòÁл¯ºÍ·´ÐòÁл¯
XMLÐòÁл¯Óë·´ÐòÁл¯ ÕûÀíÎĵµ
XMLÐòÁл¯Óë·´ÐòÁл¯
// OBJECT -> XML
public static void SaveXml(string filePath, object obj) { SaveXml(filePath, obj, obj.GetType()); }
public static void SaveXml(string filePath, object obj, System.Type type)
{
using (System.IO.StreamWriter writer = new System.IO.StreamWriter(filePath))
{
System.Xml.Serialization.XmlSerializer xs = new System.Xml.Serialization.XmlSerializer(type);
xs.Serialize(writer, obj);
writer.Close();
}
}
// XML -> OBJECT
public static object LoadXml(string filePath, System.Type type)
{
if (!System.IO.File.Exists(filePath))
return null;
using (System.IO.StreamReader reader = new System.IO.StreamReader(filePath))
{
System.Xml.Serialization.XmlSerializer xs = new System.Xml.Serialization.XmlSerializer(type);
object obj = xs.Deserialize(reader);
reader.Close();
return obj;
}
}
Ïà¹ØµÄ³£ÓÃAttribute£¨ÃüÃû¿Õ¼äSystem.Xml.Serialization £©
[XmlRootAttribute("PurchaseOrder", Namespace=
Ïà¹ØÎĵµ£º
ת×Ô£ºhttp://www.w3school.com.cn/xml/xml_dtd.asp
ÓµÓÐÕýÈ·Óï·¨µÄ XML ±»³ÆÎª“ÐÎʽÁ¼ºÃ”µÄ XML¡£
ͨ¹ýij¸ö DTD ½øÐÐÁËÑéÖ¤µÄ XML ÊÇ“ºÏ·¨”µÄ XML¡£
ÐÎʽÁ¼ºÃµÄ XML Îĵµ
Ò»¸ö"ÐÎʽÁ¼ºÃ"µÄ XML ÎĵµÓµÓÐÕýÈ·µÄÓï·¨¡£
Ò»¸ö"ÐÎʽÁ¼ºÃ"µÄ XML Îĵµ»á×ñÊØÇ°¼¸Õ½éÉܹýµÄ XML Óï·¨¹æÔò£º
XML 뀵 ......
ת×Ô£ºhttp://www.cnblogs.com/sadier/articles/99875.html
ÎÄÕÂÕýÎÄ
ǰ¶Îʱ¼ä£¬ÓÉÓÚ¹¤×÷µÄÐèÒª£¬ÀûÓõ½ÁËXML£¬ËùÒÔ¶ÔÆä½øÐÐÁËһЩ¼òµ¥µÄÑо¿¡£ÔÚ´ËÔ¸°ÑһЩÐĵÃд³öÀ´£¬Óë¸÷λ·ÖÏí£¬²»¶ÔµÄµØ·½»¹Íû¶à¶à°üº¡£
1.ʲôÊÇ XML?
Ê×ÏÈ£¬ÎÒÏë¸÷λӦ¸Ã¶¼ÒѾ´ó¸ÅÖªµÀʲôÊÇXMLÁË¡£Èç¹û£¬Äã¶Ôʲà ......
<!--
/* Font Definitions */
@font-face
{font-family:ËÎÌå;
panose-1:2 1 6 0 3 1 1 1 1 1;
mso-font-alt:SimSun;
mso-font-charset:134;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:3 135135232 16 0 262145 0;}
@font-face
{font-family:PMingLiU;
panos ......
¡¡¡¡ÔÚ´ËÏȸÐлhttp://blog.chinaunix.net/u3/111961/showart_2187819.html
¡£ÕâÊÇÆª¼«ºÃµÄÎÄÕ¡£
¡¡¡¡ÔÚÉÏ´ÎѧϰÖУ¬ÎÒÃÇдÁËclientСÀý×Ó£¬·Ç³£¼òµ¥£¬¶øÇÒͨ¹ýdbus-binding-toolÉú³ÉµÄÍ·Îļþ£¬·Ç³£¹æ·¶¡£Ïà±ÈÖ´ÐУ¬serverÉÔ΢¸´ÔÓЩ£¬ÈÔȻʹÓÃÉϴεÄxmlÎļþ£¬µ«ÊÇÈ¥µôannotation£¬¸üΪ±¾ÔһЩ¡£Îļþwei.xmlÈçÏ£º
& ......