• XML使用XlmReader读books.xml中有几本书。使用XlmWriter写NewBooks.xml文件。


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Xml;

    namespace XML1
    {
        public partial class WebForm1 : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                //使用XlmReader读books.xml中有几本书
                XmlReaderSettings settings=new XmlReaderSettings();
                settings.IgnoreComments=true;
                settings.IgnoreWhitespace=true;
                int booknum = 0;
                using (XmlReader reader = XmlReader.Create(Server.MapPath("books.xml"), settings))
                {
                        while (reader.Read())
                    {
                        if (reader.NodeType == XmlNodeType.Element)
                        {
                            if (reader.LocalName == "book")
                            {
                                booknum++;
                            }
                        }
                   
                    }
     
                }
                Response.Write("一共找到了" + booknum + "本书!");
              
            }
            //使用XlmWriter写NewBooks.xml文件。

            protected void Button1_Click(object sender, EventArgs e)
            {
                XmlWriterSettings settings=new XmlWriterSettings();
                settings.Encoding=System.Text.Encoding.UTF8;//输入的编码
                settings.Indent=true;
                using (XmlWriter write = XmlWriter.Create(Server.MapPath("newbook.xml"), settings))
                {
                    write.WriteStartDocument();//开始写
                    write.WriteStartElement("books");
                    write.WriteStartElement("book");//book节点开始
                    write.WriteStartAttribute("id");//给book添加属性
                    write.WriteValue("1");//设置属性id的值为1
                    write.WriteEndAttribute();//结束属性
                    write.WriteStartElement("author");//author节点

                    write.WriteString("张闻正");//author节点中的内容
                    write.WriteEndElement();//结束author节点
                    write.WriteEndElement();//结束book节点

                    //再添一本书
                    write.WriteStartElement("book");//book开始
                    write.WriteStartElement("author");//author节点
                    write.WriteString("清华大学出版社");//author节点中的内容
                    write.WriteEndElement();//结束author节点
                    write.WriteEndElement();//结束book节点

                    write.WriteEndElement();
                }
                this.Response.Write("ok");

            }
        }
    }

  • 相关阅读:
    权值线段树模版
    P2679 [NOIP2015 提高组] 子串
    P3747 [六省联考 2017] 相逢是问候
    P2822 [NOIP2016 提高组] 组合数问题
    P2331 [SCOI2005]最大子矩阵
    P1854 花店橱窗布置
    P5888 传球游戏
    Hard | LeetCode 42. 接雨水 | 单调栈 | 双指针
    Medium | LeetCode 621. 任务调度器 | 设计
    Medium | LeetCode 166. 分数到小数 | 数学
  • 原文地址:https://www.cnblogs.com/poiu/p/2827168.html
Copyright © 2020-2023  润新知