将XML字符串写入到XML文件并保存到指定路径
Posted nayilvyangguang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将XML字符串写入到XML文件并保存到指定路径相关的知识,希望对你有一定的参考价值。
/// <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文件并保存到指定路径的主要内容,如果未能解决你的问题,请参考以下文章
怎样用asp实现,下载指定网址文件,并重命名后保存到本地服务器上?