xml的应用有哪些C#
展开全部
C#
1,DataSet 有读取XML的方法
2,读XML配置文件的System.Configuration.Configuration 有很多类用于操作XML
3,就是自己写代码读取 参数1要读取的配置节参数2要读取的XML的路径
public static string GetConfig(string str, string xnm)
{
XmlTextReader reader = new XmlTextReader(xnm);
try
{
while ((reader.Read()))
{
if ((reader.NodeType == XmlNodeType.Element & reader.LocalName == str))
{
return reader.ReadString();
}
}
}
catch
{
return "";
}
finally
{
reader.Close();
}
return "";
}
1,DataSet 有读取XML的方法
2,读XML配置文件的System.Configuration.Configuration 有很多类用于操作XML
3,就是自己写代码读取 参数1要读取的配置节参数2要读取的XML的路径
public static string GetConfig(string str, string xnm)
{
XmlTextReader reader = new XmlTextReader(xnm);
try
{
while ((reader.Read()))
{
if ((reader.NodeType == XmlNodeType.Element & reader.LocalName == str))
{
return reader.ReadString();
}
}
}
catch
{
return "";
}
finally
{
reader.Close();
}
return "";
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询