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

将XML字符串写入到XML文件并保存到指定路径

时间:2018-11-19 11:12:51      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:指定   file   保存   1.0   test   路径   dir   字符   directory   

          /// <summary>
         /// 将XML字符串写入到XML文件
         /// </summary>
        /// <param name="strXML"></param>
        private int WriteStrToXML(string strXmlName, string strXML)
        {
            try
            {
                string filepath = System.Web.HttpContext.Current.Server.MapPath("~/CatitalXML");
                if (!Directory.Exists(filepath))
                    Directory.CreateDirectory(filepath);
                filepath = filepath + "/" + DateTime.Now.ToString("yyyy-MM-ddHHmmss") + strXmlName + ".XML";
                XmlDocument xdoc = new XmlDocument();
                xdoc.AppendChild(xdoc.CreateXmlDeclaration("1.0""UTF-8"null));//xml文件头
                xdoc.LoadXml(strXML);
                xdoc.Save(filepath);
                return 0;
            }
            catch (Exception)
            {
                return -1;
            }
        }

将XML字符串写入到XML文件并保存到指定路径

标签:指定   file   保存   1.0   test   路径   dir   字符   directory   

原文地址:https://www.cnblogs.com/nayilvyangguang/p/9981536.html

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