码迷,mamicode.com
首页 > 其他好文 > 详细

XML转换成DataTable

时间:2019-09-02 12:14:56      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:text   string   turn   gre   nal   null   exception   data   name   

        #region XML转dataset
        //str 是xml字符串
        public static DataTable GetResultXMLToDataTable    (string str,string Dt_Name)
        {
            DataSet xmlDs = new DataSet("ds");
            StringReader stream = null;
            XmlTextReader reader = null;
            try
            {
                using (stream = new StringReader(str))
                {
                    using (reader = new XmlTextReader(stream))
                    {
                        xmlDs.ReadXml(reader);
                        return xmlDs.Tables[Dt_Name];
                    }
                }
            }
            catch (Exception ex)
            {
               //Get Exception
            }
            finally
            {
                if (reader != null)
                    reader.Close();
                if (stream != null)
                    stream.Close();
            }
            return null;
        }

        #endregion

 

XML转换成DataTable

标签:text   string   turn   gre   nal   null   exception   data   name   

原文地址:https://www.cnblogs.com/TechnologyDictionary/p/11445379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!