欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp.net使用DataSet的ReadXml讀取XML文件及Stream流的方法

 更新時間:2016年06月30日 08:50:09   作者:smartsmile2012  
這篇文章主要介紹了asp.net使用DataSet的ReadXml讀取XML文件及Stream流的方法,實(shí)例分析了asp.net以字符流的形式讀取與寫入xml文件的相關(guān)技巧,需要的朋友可以參考下

本文實(shí)例講述了asp.net使用DataSet的ReadXml讀取XML文件及Stream流的方法。分享給大家供大家參考,具體如下:

string strxml = "<xml><m><a>1</a><b>2</b></m><m><a>11</a><b>22</b></m><m><a>111</a><b>222</b></m></xml>";
DataSet ds = new DataSet();
Stream stream = new MemoryStream(Encoding.Default.GetBytes(strxml));
ds.ReadXml(stream);
GridView1.DataSource = ds;
GridView1.DataBind();

protected void Page_Load(object sender, EventArgs e)
{
  if (!IsPostBack)
  {
    DataSet ds = new DataSet();
    TextReader reader = new StringReader(@"
          <music>
           <song>
            <artist>The Chi-lites</artist>
            <genre>Soul</genre>
            <album>A lonely man</album>
            <year>1972</year>
           </song>
           <song>
            <artist>Babyface</artist>
            <genre>R&B</genre>
            <album>unknown</album>
            <year></year>
           </song>
           <song>
            <artist>Babyface</artist>
            <genre>R&B</genre>
            <album>The essential babyface</album>
            <year>2001</year>
           </song>
           <song>
            <artist>Babyface</artist>
            <genre>R&B</genre>
            <album>Grown and sexy</album>
            <year>2005</year>
           </song>
           <song>
            <artist>Maria Arredondo</artist>
            <genre>Pop</genre>
            <album>Not going under</album>
            <year>2004</year>
           </song>
           <song>
            <artist>Leona Lewis</artist>
            <genre>Pop</genre>
            <album>Unknown</album>
            <year>2008</year>
           </song>
           <song>
            <artist>Usher</artist>
            <genre>R&B</genre>
            <album>Usher</album>
            <year>2008</year>
           </song>
           <song>
            <artist>Christina Aguilera</artist>
            <genre>Blues</genre>
            <album>Back to basics</album>
            <year>2004</year>
           </song>
           <song>
            <artist>Sting</artist>
            <genre>Pop</genre>
            <album>Shape of my heart</album>
            <year></year>
           </song>
          </music>
          ");
    //讀取Xml字符串 用來接收WebService返回數(shù)據(jù)
    ds.ReadXml(reader, XmlReadMode.Auto);
    //生成Xml文件
    //ds.WriteXml(Server.MapPath("xml/song_bak.xml"));
    GridView1.DataSource = ds;
    GridView1.DataBind();
  }
}

#region 接口返回的Xml轉(zhuǎn)換成DataSet
/// <summary>
/// 返回的Xml轉(zhuǎn)換成DataSet
/// </summary>
/// <param name="text">Xml字符</param>
/// <returns></returns>
private DataSet GetDataSet(string text)
{
  try
  {
    XmlTextReader reader = new XmlTextReader(new StringReader(text));
    reader.WhitespaceHandling = WhitespaceHandling.None;
    DataSet ds = new DataSet();
    ds.ReadXml(reader);
    reader.Close();
    ds.Dispose();
    return ds;
  }
  catch
  {
    return null;
  }
}
#endregion
#region 后臺提交數(shù)據(jù)且獲取接口返回的數(shù)據(jù)
/// <summary>
/// 后臺提交數(shù)據(jù)且獲取接口返回的數(shù)據(jù)
/// </summary>
/// <param name="relativePath">地址</param>
/// <returns></returns>
public static string GetRequestString(string relativePath)
{
  string requestUrl = relativePath;
  try
  {
    // 創(chuàng)建一個HTTP請求
    HttpWebRequest request = (System.Net.HttpWebRequest)WebRequest.Create(requestUrl);
    request.Method = "GET";
    StreamReader jsonStream = new StreamReader(request.GetResponse().GetResponseStream());
    string jsonObject = jsonStream.ReadToEnd();
    return jsonObject;
  }
  catch
  {
    return string.Empty;
  }
}
#endregion

更多關(guān)于asp.net相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《asp.net操作json技巧總結(jié)》、《asp.net字符串操作技巧匯總》、《asp.net操作XML技巧總結(jié)》、《asp.net文件操作技巧匯總》、《asp.net ajax技巧總結(jié)專題》及《asp.net緩存操作技巧總結(jié)》。

希望本文所述對大家asp.net程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評論