当前位置 : 主页 > 网络编程 > 其它编程 >

读取.XML配置文件

来源:互联网 收集:自由互联 发布时间:2023-07-02
读取配置文件信息,配置文件服务器程序当前路径下GisServiceConfig.xmlXML节点名称节点值publicstaticstringGetConfigVa /// ///读取配置文件信息,配置文件服务器程序当前路径下GisServiceConfig.xml /
读取配置文件信息,配置文件服务器程序当前路径下GisServiceConfig.xmlXML节点名称节点值publicstaticstringGetConfigVa

///

///读取配置文件信息,配置文件服务器程序当前路径下GisServiceConfig.xml

///

///XML节点名称

///节点

public static string GetConfigValue(string p_key)

{

XmlDocument doc = new XmlDocument();

string cOnfig= "";

string xmlPath = AppDomain.CurrentDomain.BaseDirectory"GisServiceConfig.xml"; //获取"GisServiceConfig.xml"文件的路径

doc.Load(xmlPath);

if(!xmlPath)

{

XElement element = XElement.Parse(doc.InnerXml);

cOnfig= element.Element(p_key).Value;

return config;

}

else

{

return "":

}

}

读取.XML配置文件,布布扣,bubuko.com

上一篇:mongodb下载、windows平台下安装和启动
下一篇:没有了
网友评论