zoukankan      html  css  js  c++  java
  • c#之xml

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml;
    using System.IO;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
            //    XmlDocument doc = new XmlDocument();
            //    //创建描述信息,并且添加到doc文档中
            // XmlDeclaration dc=doc.CreateXmlDeclaration("1.0", "utf-8", null);
            // doc.AppendChild(dc);
            // //添加根节点
            // XmlElement nodes = doc.CreateElement("Books");
            // doc.AppendChild(nodes);
            ////添加子节点
            // XmlElement book1 = doc.CreateElement("book");
            // nodes.AppendChild(book1);
            // XmlElement book2 = doc.CreateElement("name");
            // book2.InnerText = "假如sssx";
            // book1.AppendChild(book2);
            
            // XmlElement book3 = doc.CreateElement("price");
            // book1.AppendChild(book3);
            // book3.InnerText = "600";
            // XmlElement book4 = doc.CreateElement("dec");
            // book1.AppendChild(book4);
            // book4.InnerText = "6sdasdsadsad";
    
            // XmlElement book5 = doc.CreateElement("book");
            // nodes.AppendChild(book5);
            // XmlElement book6 = doc.CreateElement("name");
            // book6.InnerText = "假如";
            // book5.AppendChild(book6);
    
            // XmlElement book7 = doc.CreateElement("price");
            // book5.AppendChild(book7);
            // book7.InnerText = "60";
            // XmlElement book8 = doc.CreateElement("dec");
            // book5.AppendChild(book8);
            // book8.InnerText = "6sdasdsadsad";
          
            // doc.Save("kiven.xml");
               
            // Console.ReadKey();
                XmlDocument doc = new XmlDocument();
                XmlDeclaration dc = doc.CreateXmlDeclaration("1.0", "utf-8", "yes");
                doc.AppendChild(dc);
                XmlElement order = doc.CreateElement("Order");
                doc.AppendChild(order);
                XmlElement Cu = doc.CreateElement("CustomerName");
                order.AppendChild(Cu);
                Cu.InnerText = "张三";
                XmlElement cust=doc.CreateElement("customerNumber1");
                cust.InnerText = "100";
                order.AppendChild(cust);
                XmlElement item = doc.CreateElement("Items");
                order.AppendChild(item);
                XmlElement orders = doc.CreateElement("OrderItem");
                orders.SetAttribute("Name", "码表");
                orders.SetAttribute("Count", "20");
                item.AppendChild(orders);
                XmlElement orders1 = doc.CreateElement("OrderItem");
                item.AppendChild(orders1);
                XmlElement orders2 = doc.CreateElement("OrderItem");
                item.AppendChild(orders2);
                doc.Save("a.xml");
                Console.ReadKey();
                
    
    
            }
        }
    }
    

      

  • 相关阅读:
    HTML技巧篇:如何让单行文本以及多行文本溢出时显示省略号(…)
    SpringMVC中响应json数据(异步传送)
    如何用Spring框架的<form:form>标签实现REST风格的增删改查操作
    如何使用REST请求风格
    Spring插件的安装与卸载---笔记
    元素 "context:component-scan" 的前缀 "context" 未绑定的解决方案
    简单的文件上传的下载(动态web项目)
    用简单的反射优化代码(动态web项目)
    json数据与Gson工具类的使用
    JSON简介
  • 原文地址:https://www.cnblogs.com/mengluo/p/5500755.html
Copyright © 2011-2022 走看看