zoukankan      html  css  js  c++  java
  • xml读写

    吾乃xml大白,最近用于项目要更改程序配置文件,最终以xml读写方式进行。

    插叙:xml简单介绍http://www.cnblogs.com/jb8164/articles/736515.html

    更改值,如没有对应的key,进行新建。

     private void ModifyXML(string path,string NodeName,string AppKey,string AppValue)
            {
                try
                {
                    System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument();
                    xDoc.Load(path);
    
                    System.Xml.XmlNode xNode;
                    System.Xml.XmlElement xElem1;
                    System.Xml.XmlElement xElem2;
                    xNode = xDoc.SelectSingleNode("//" + NodeName);
    
                    xElem1 = (System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");
    
                    string p1 = xElem1.GetAttribute("value");
    
                    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(path);
                }
                catch (Exception ex)
                {
                }
            }
    

    获取值

    private string ReadXML(string path, string NodeName, string AppKey)
            {
                try
                {
                    System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument();
                    xDoc.Load(path);
    
                    System.Xml.XmlNode xNode;
                    System.Xml.XmlElement xElem1;
                    System.Xml.XmlElement xElem2;
                    xNode = xDoc.SelectSingleNode("//" + NodeName);
    
                    xElem1 = (System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");
                    return xElem1.GetAttribute("value");
                }
                catch (Exception ex)
                {
                    return "";
                }
            }
    

    目前停留在基础应用,现学现卖。感觉xml这种树形结构,关键在于结构的组织,对节点的索引和节点内容的规范。

  • 相关阅读:
    swt 更新主UI线程
    java中 快捷键输入System.out.println();
    原型设计工具
    JAVA笔记
    转:java读取配置文件的几种方法
    Server Message Block
    安全标识符
    BitLocker:如何启用网络解锁
    imageX.exe
    组策略首选项
  • 原文地址:https://www.cnblogs.com/GISyunqi/p/4056768.html
Copyright © 2011-2022 走看看