xml转换dataset

前端之家收集整理的这篇文章主要介绍了xml转换dataset前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public static DataSet CXmlToDataSet(string xmlStr)
{
if (!string.IsNullOrEmpty(xmlStr))
{
StringReader StrStream = null;
XmlTextReader Xmlrdr = null;
try
{
DataSet ds = new DataSet();
//读取字符串中的信息
StrStream = new StringReader(xmlStr);
//获取StrStream中的数据
Xmlrdr = new XmlTextReader(StrStream);
//ds获取Xmlrdr中的数据
ds.ReadXml(Xmlrdr);
return ds;
}
catch (Exception e)
{
throw e;
}
finally
{
//释放资源
if (Xmlrdr != null)
{
Xmlrdr.Close();
StrStream.Close();
StrStream.Dispose();
}
}
}
else
{
return null;
}

}


///转换datatable

public static DataTable CXmlToDatatTable(string xmlStr,int tableIndex) { return CXmlToDataSet(xmlStr).Tables[tableIndex]; }

原文链接:https://www.f2er.com/xml/295250.html

猜你在找的XML相关文章