XmlReader读取XML

留着以后用。

StringBuilder output = new StringBuilder();

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>";

// Create an XmlReader
using (XmlReader reader = XmlReader.Create(new StringReader(xmlString)))
{
    reader.ReadToFollowing("book");

    if (reader.HasAttributes)
    {
        output.Append("Attributes of <" + reader.Name + ">");
        for (int i = 0; i < reader.AttributeCount; i++)
        {
            reader.MovetoAttribute(i);
            output.Append(" " + reader.Name + "=" + reader.Value);
        }
        reader.MovetoElement(); // Moves the reader back to the element node.
    }

}

OutputTextBlock.Text = output.ToString();

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念