_xml example of 2 small functions reading and writing XML files
Source: Internet
Author: User
To access an XML file using the DOM, you must link the XML file to an HTML Web page.
2 small functions #region Read and write XML files, 4 2 by HYC
The public void Setxmlfilevalue (string xmlpath,string appkey,string appvalue)/write Xmlpath is the file path + filename, Appkey is Key name, Appvalue is value
{
XmlDocument xdoc = new XmlDocument ();
Xdoc.load (Xmlpath);
XmlNode XNode;
XmlElement xElem1;
XmlElement xElem2;
The public void Getxmlfilevalue (string xmlpath,string appkey,ref string appvalue)/Read Xmlpath is the file path + filename, Appkey is the Key name, Appvalue is 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 isn't any information!");
}
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service