码迷,mamicode.com
首页 > 其他好文 > 详细

创建XML文档结构

时间:2014-06-28 22:20:02      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   c   io   

        static void CreateXML(string outputPath)
        {
            XmlDocument _xmlDoc = new XmlDocument();
            string _xmlNode = @"<books type=‘ITP‘ language=‘english‘><metadata></metadata></books>";
            _xmlDoc.LoadXml(_xmlNode);
            XmlDeclaration _xmlDeclar = _xmlDoc.CreateXmlDeclaration("1.0", "UTF-8", "no");
            XmlElement _root = _xmlDoc.DocumentElement;
            _xmlDoc.InsertBefore(_xmlDeclar, _root);
            if (!string.IsNullOrWhiteSpace(outputPath))
            {
                _xmlDoc.Save(outputPath);
            }
        }

 

 

文档预览

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<books type="ITP" language="english">
<metadata>
</metadata>
</books>

 

创建XML文档结构,布布扣,bubuko.com

创建XML文档结构

标签:style   blog   color   for   c   io   

原文地址:http://www.cnblogs.com/qixue/p/3794375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!