• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    读写xml文件的2个小函数
    要利用DOM 来存取XML 文件,你必须将XML 文件连结到HTML 网页上。

    #region 读写xml文件的2个小函数,2005 4 2 by hyc 
    public void SetXmlFileValue(string xmlPath,string AppKey,string AppValue)//写xmlPath是文件路径+文件名,AppKey是 Key Name,AppValue是Value
    {
    XmlDocument xDoc = new XmlDocument();
    xDoc.Load(xmlPath);
    XmlNode xNode;
    XmlElement xElem1;
    XmlElement xElem2;

    xNode = xDoc.SelectSingleNode("//appSettings");

    xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");
    if ( xElem1 != null )
    {
    xElem1.SetAttribute("value",AppValue);
    }
    else
    {
    xElem2 = xDoc.CreateElement("add");
    xElem2.SetAttribute("key",AppKey);
    xElem2.SetAttribute("value",AppValue);
    xNode.AppendChild(xElem2);
    }
    xDoc.Save(xmlPath);
    }


    public void GetXmlFileValue(string xmlPath,string AppKey,ref string AppValue)//读xmlPath是文件路径+文件名,AppKey是 Key Name,AppValue是Value
    {
    XmlDocument xDoc = new XmlDocument();
    xDoc.Load(xmlPath);
    XmlNode xNode;
    XmlElement xElem1;

    xNode = xDoc.SelectSingleNode("//appSettings");

    xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");
    if ( xElem1 != null )
    {
    AppValue=xElem1.GetAttribute ("value");
    }
    else
    {
    // MessageBox.Show ("There is not any information!");
    }

    }

    #endregion
    上一篇:怎样才能用js生成xmldom对象,并且在firefox中也实现xml数据岛?
    下一篇:XML 取得元素的字符数据
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    读写xml文件的2个小函数 读写,xml,文件,的,2个,小,