¸ñʽ»¯XML£ºÊä³öÓÐËõ½øÐ§¹ûµÄXML×Ö·û´®
1. Ò»°ãÇé¿öÏÂʹÓÃÒÔÏ´úÂë¼´¿É½«XML×Ö·û´®ÖØÐ¸ñʽ»¯£º
private string FormatXml(string source)
{
StringBuilder sb = new StringBuilder();
XmlTextWriter writer = null;
try
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(source);
writer = new XmlTextWriter(new StringWriter(sb));
writer.Formatting = Formatting.Indented;
doc.WriteTo(writer);
}
finally
{
if (writer != null) writer.Close();
}
 
Ïà¹ØÎĵµ£º
xmlÎļþ£º
<?xml version="1.0" encoding="UTF-8"?>
<mobile-list>
<mobile type="Nokia2652">
<wap2>false</wap2>
<width>115</width>
</mobile>
<mobile type="Nokia2650">
......
ʹÓÃMetadata¼ò»¯±íÊý¾ÝÏòXMLÐÎʽת»¯µÄʵÏÖ
Èç¹ûÐèÒª½«±íÊý¾Ýת»¯ÎªXMLÐÎʽÊý¾ÝµÄ»°£¬Èç¹ûÎÒÃÇʹÓÃSpringµÄJDBC Template£¬ÄÇô³£ÐèÒª×öµÄ¹¤×÷ÊÇ´´½¨Ò»¸öRowMapperÄäÃûÀ࣬ÔÚÆäÖн«×Ö¶ÎÓëÁìÓò¶ÔÏóµÄij¸öÊôÐÔÆ¥ÅäÉÏ£¬È»ºóµÃµ½ÁìÓò¶ÔÏóÁ´±íÐÎʽµÄ½á¹û£¬´ËºóÕ¹¿ªÕâ¸ö¼¯ºÏ£¬ÔÙ½«×Ö¶Îת»¯ÎªXMLÊý¾Ý£¬ÆäÖнøÐÐÁËÁ½´ÎÃû³ÆºÍÖµÖ® ......
<?
/**
* xml2array() will convert the given XML text to an array in the XML structure.
* Link: http://www.bin-co.com/php/scripts/xml2array/
* Arguments : $contents - The XML text
* $get_attributes - 1 or 0. If this is 1 the function will get the attributes as well as the ......
¸Õ¿ªÊ¼Ñ§Ï°ÓïÒåÍøµÄ֪ʶ£¬¸ù¾ÝÓïÒåÍø²ã´ÎÍÆ½ø£¬¿´ÍêXML½ô½Ó×ÅRDF£¬ºöÈ»ÓиöÒÉÎÊ£ºÎªÊ²Ã´ÎÒÃÇÒ»¶¨ÒªÓÃRDF¶ø·Ç½ö½öʹÓÃÒѾºÜ³ÉÊìµÄXMLÄØ£¿Ã²ËÆXML±ÈRDFÉÙÁËÒ»¸öÍÆÀíµÄϵͳ£¬¿ÉÒÔ¾ÍÍÆÀí¶øÑÔ£¬RDFÒ²¾ø²»ÊÇ×îºÃµÄ£¬ÏÔÈ»OWLµÄÍÆÀíÒª±ÈRDFÇ¿ºÜ¶à°¡£¬ÄÇôΪʲô»¹ÐèÒªÕâ¸ö²ã´ÎÄØ£¿
&n ......
ËäÈ»XMLÉè¼ÆµÄ³õÖÔÊÇΪÁË·½±ã»úÆ÷Ö®¼äµÄ½»»¥£¨interoperability£©£¬¶øÐèÒªÂú×ã»úÆ÷¿ÉÔĶÁ£¨machine readable£©µÄÌØÐÔ¡£È»¶ø£¬ÓÉÓÚ³ÌÐòԱΪÁË·½±ã¿ª·¢£¬¼ÈÈ»XMLÊÇͨ¹ýÎı¾±íʾµÄ£¬²»ÈçÔÙÇ¿»¯Ò»Ð©£¬×öµ½ÈËÀà¿ÉÔĶÁ£¨human readable£©°É¡£XML¾¿¾¹ÊÇÄÄÖÖ¿ÉÔĶÁµÄÌÖÂÛÒѾÊÇÀÏÉú³£Ì¸ÁË£¬ÕâÀï²»»áÉîÈë̽ÌÖ£¬Ö»ÊǽèÖúÕâ¸ö»ú»á½éÉÜÒ ......