1. 程式人生 > >2 怎樣解析XML文件或字符串

2 怎樣解析XML文件或字符串

ica 代碼 clas books con value title 例如 parse


1 引用XML文件
2 使用XMLReader解析文本字符串
3 使用XMLReader方法讀取XML數據

詳細代碼實現例如以下:
//初始化一個XML字符串
String xmlString =
                @"<bookstore>
                    <book genre=‘autobiography‘ publicationdate=‘1981-03-22‘ ISBN=‘1-861003-11-0‘>
                        <title>The Autobiography of Benjamin Franklin</title>
                        <author>
                            <first-name>Benjamin</first-name>
                            <last-name>Franklin</last-name>
                        </author>
                        <price>8.99</price>
                    </book>
                </bookstore>";

ParseXml(xmlString);


static void ParseXml(string xmlString)
{
             
            //創建一個StringBuilder對象用來保存從XML文件裏解析出來的文本內容
            StringBuilder output = new StringBuilder();

            創建一個XML讀取器
            using (XmlReader reader = XmlReader.Create(new StringReader(xmlString)))
            {
                reader.ReadToFollowing("book");
                reader.MoveToFirstAttribute();
                string genre = reader.Value;
                output.AppendLine("The genre value: " + genre);

                reader.ReadToFollowing("title");
                output.AppendLine("Content of the title element: " + reader.ReadElementContentAsString());
             }

            
             Console.WriteLine(output);
}


2 怎樣解析XML文件或字符串