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

Posted yutingliuyl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2 怎样解析XML文件或字符串相关的知识,希望对你有一定的参考价值。


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文件或字符串的主要内容,如果未能解决你的问题,请参考以下文章

angularjs中怎样将xml字符串转化为xml文件

java解析xml的几种方式哪种最好?

从 XML 声明片段获取 XML 编码:部分内容解析不支持 XmlDeclaration

Android之DOM解析XML

Android之DOM解析XML

在java项目中怎样利用Dom4j解析XML文件获取数据