时间:2021-05-25
要利用DOM来存取XML文件,你必须将XML文件连结到HTML网页上。
#region读写xml文件的2个小函数,200542byhyc
publicvoidSetXmlFileValue(stringxmlPath,stringAppKey,stringAppValue)//写xmlPath是文件路径+文件名,AppKey是KeyName,AppValue是Value
{
XmlDocumentxDoc=newXmlDocument();
xDoc.Load(xmlPath);
XmlNodexNode;
XmlElementxElem1;
XmlElementxElem2;
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);
}
publicvoidGetXmlFileValue(stringxmlPath,stringAppKey,refstringAppValue)//读xmlPath是文件路径+文件名,AppKey是KeyName,AppValue是Value
{
XmlDocumentxDoc=newXmlDocument();
xDoc.Load(xmlPath);
XmlNodexNode;
XmlElementxElem1;
xNode=xDoc.SelectSingleNode("//appSettings");
xElem1=(XmlElement)xNode.SelectSingleNode("//add[@key='"+AppKey+"']");
if(xElem1!=null)
{
AppValue=xElem1.GetAttribute("value");
}
else
{
//MessageBox.Show("Thereisnotanyinformation!");
}
}
#endregion
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
关于C语言的文件读写,我将介绍下面这几种方式:字符的读写:使用fgetc()函数和fputc()函数;字符串的读写:使用fgets()函数和fputs()函数;
前面介绍的文件读写函数都是顺序读写,即读写文件只能从头开始,依次读写各个数据。但在实际开发中经常需要读写文件的中间部分,要解决这个问题,就得先移动文件内部的位置
读写文件是最常见的IO操作。Python内置了读写文件的函数,用法和C是兼容的。读写文件前,我们先必须了解一下,在磁盘上读写文件的功能都是由操作系统提供的,现代
今天来说说xml那些事儿.如何批量修改指定文件夹下的xml文件的指定属性.分三步走,首先,我们先看看如何读写单个的xml文件;第二步,来看看如何遍历指定文件夹下
主要功能:php中使用DOM类读取XML文件设计知识点:1、XML节点循环读取2、用iconv()函数实现编码转换,防止中文乱码holiday.xml文件如下复