Ò׽ؽØÍ¼Èí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö160KB

XML ¶Á

StringBuilder output = new
StringBuilder();
String xmlString =
@"<bookstore>
<book genre='novel' ISBN='10-861003-324'>
<title>The Handmaid's Tale</title>
<price>19.95</price>
</book>
<book genre='novel' ISBN='1-861001-57-5'>
<title>Pride And Prejudice</title>
<price>24.95</price>
</book>
</bookstore>";
// Load the file and ignore all white space.
XmlReaderSettings settings = new
XmlReaderSettings();
settings.IgnoreWhitespace = true
;
using
(XmlReader reader = XmlReader.Create(new
StringReader(xmlString), settings))
{

// Move the reader to the second book node.

  reader.MoveToContent();

  reader.ReadToDescendant("book"
);

  reader.Skip();
//Skip the first book.
// Parse the file starting with the second book node.
do
{
switch
(reader.NodeType)

{

case
XmlNodeType.Element:
output.AppendLine("<"
+ reader.Name);
while
(reader.MoveToNextAttribute())

{
  output.AppendLine(" "
+ reader.Name + "="
+ reader.Value);
}
  output.AppendLine(">"
);

  break
;
 
case
XmlNodeType.Text:
output.AppendLine(reader.Value);
  
break
;
  case
XmlNodeType.EndElement:

   output.AppendLine("</"
+ reader.Name + ">"
);
   
break
;

  }

 }
  while
(reader.Read());
}
OutputTextBlock.Text = output.ToString();
XMLÊÇĿǰ×î³£ÓõÄͨÓÃÊý¾Ý´«ÊäÓë´¦Àí½Ó¿ÚÀàÐÍ¡£±¾ÎĽéÉÜÈçºÎÓÃC#.NET¶ÁдXMLÎĵµ×ÊÁÏ¡£
<?xml version="1.0" encoding="utf-8"?>


Ïà¹ØÎĵµ£º

Javaͨ¹ýdom4j.jar¶ÁÈ¡xmlÎļþ

/**
 * ftpÉÏ´«ÎļþJavaBean
 * @author Administrator
 *
 */
public class FtpBean {
 //ftp·þÎñµØÖ·
 private String ftpUrl="";
 //ftpÓû§Ãû
 private String userName="";
 //ftpÃÜÂë
 private String passWord="";
 
 public String getF ......

c# Ö§³ÖXMLÐòÁл¯µÄ·ºÐÍ Dictionary

/// <summary>
/// Ö§³ÖXMLÐòÁл¯µÄ·ºÐÍ Dictionary
/// </summary>
/// <typeparam name="TKey"></typeparam>
/// <typeparam name="TValue"></typeparam>
[XmlRoot("SerializableDictionary")]
public class SerializableDictionary<TKey, TValue& ......

springÖжÁÈ¡xmlÅäÖÃÎļþ¡¢»ñÈ¡beanµÄ¼¸ÖÖ·½Ê½

»ñÈ¡Spring¿ò¼Ü¹ÜÀíµÄÀàʵÀýµÄ·½·¨ÓжàÖÖ,ÈçÏ£º
·½·¨Ò»£ºÔÚ³õʼ»¯Ê±±£´æApplicationContext¶ÔÏó
´úÂ룺
ApplicationContext ac = new FileSystemXmlApplicationContext("applicationContext.xml");
ac.getBean("beanId");
˵Ã÷£º
ÕâÖÖ·½Ê½ÊÊÓÃÓÚ²ÉÓÃSpring¿ò¼ÜµÄ¶ÀÁ¢Ó¦ÓóÌÐò£¬ÐèÒª³ÌÐòͨ¹ýÅäÖÃÎļþÊÖ¹¤³õʼ»¯ ......

PropertySet½Ì³Ì 2.Memory¡¢map¡¢XML·½Ê½

¡¡¡¡inkfishÔ­´´£¬ÇëÎðÉÌÒµÐÔÖÊ×ªÔØ£¬×ªÔØÇë×¢Ã÷À´Ô´£¨http://blog.csdn.net/inkfish
£©¡£
¡¡¡¡PropertySet£¨À´Ô´£ºhttp://blog.csdn.net/inkfish£©
ÊÇÓÉopensymphony×éÖ¯¿ª·¢µÄµÄÒ»¸ö¿ªÔ´ÏîÄ¿£¬µ«ÊÇÄǸöÏîÄ¿ÎĵµÉÙ£¬³¤Ê±¼äûÓиüУ¬¹Ù·½Îĵµ´íÎóÆæ¶à£¬ËùÒÔÏÖÔÚÔÚÏîÄ¿ÖÐʹÓò¢²»¹ã·º¡£µ«Õâ²¢²»·Á°­PropertySet³ÉΪһ¸öÓ ......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØÍ¼ | ¸ÓICP±¸09004571ºÅ