程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#與RSS親密接觸

C#與RSS親密接觸

編輯:關於C語言

講述動態生成RSS文件的方法。
動態生成RSS文件也基本有兩種方法,一種是用字符串累加的方法,另一種是使用xml文檔生成的方法。字符串累加的方法也比較簡單,我也就不多說了,這裡著重說一下生成XmlDocument的方法,包括各種節點的創建,屬性的創建等。當然在此也有必要說明一下為什麼采用後者,因為後者符合XML DOM標准,有利於你認識dom模型,並且構造速度更快,構造出的XML文檔更不容易出錯,其中有一些細節我也會做一些必要的講述。
 
主方法如下:
private void WriteRSS()
{
     XmlDocument domDoc = new XMLDocument();
     XmlDeclaration nodeDeclar = domDoc.CreateXMLDeclaration("1.0", System.Text.Encoding.UTF8.BodyName, "yes");
     domDoc.AppendChild(nodeDeclar);
 
     //如果rss有樣式表文件的話,加上這兩句
     XmlProcessingInstruction nodeStylesheet = domDoc.CreateProcessingInstruction("XML-stylesheet","type=\"text/css\" href=\"rss.CSS\"");
     domDoc.AppendChild(nodeStylesheet);
 
     XMLElement root = domDoc.CreateElement("rss");
     root.SetAttribute("version","2.0"); //添加屬性結點
     domDoc.AppendChild(root);
 
     XMLElement chnode = domDoc.CreateElement("channel");
     root.AppendChild(chnode);
 
     XMLElement element = domDoc.CreateElement("title");
     XMLNode textNode = domDoc.CreateTextNode("搜狐焦點新聞");    //文本結點
     element.AppendChild(textNode);
     chnode.AppendChild(element);
 
     element = domDoc.CreateElement("link");
     textNode = domDoc.CreateTextNode("http://www.sohu.com");
     element.AppendChild(textNode);
     chnode.AppendChild(element);
 
     element = domDoc.CreateElement("description"); //引用結點
     XMLNode cDataNode = domDoc.CreateCDataSection("即時報道國內外時政大事,解讀環球焦點事件");
     element.AppendChild(cDataNode);
     chnode.AppendChild(element);
 
     DataTable dt = GetDataTab();     //訪問數據庫,獲取要在rss中顯示的記錄
 
     foreach(DataRow dr in dt.Rows)
     {
         element = domDoc.CreateElement("item");
 
         //...
         //創建內容結點,常見的如title,description,link,pubDate,創建方法同上
         //...
 
         chnode.AppendChild(element);
     }
 
     //輸出
     XmlTextWriter objTextWrite = new XMLTextWriter(this.Response.OutputStream,System.Text.Encoding.UTF8);
     domDoc.WriteTo(objTextWrite);
     objTextWrite.Flush();
     objTextWrite.Close();
}
 
輸出結果如下(item部分是為說明實例手工添加):
<?XML version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>搜狐焦點新聞</title>
<link>http://www.sohu.com</link>
<description>
<![CDATA[即時報道國內外時政大事,解讀環球焦點事件
 ]]>
 </description>
<item id="">
        <title></title>
           <link></link>
           <pubDate>2006-10-15 21:59:36</pubDate>
 </item>
<item id="">
          <title></title>
           <link></link>
<pubDate>2006-10-15 10:33:53</pubDate>
</item>
 <title>[中介][出售住宅]明發國際新城3房2廳2衛93萬元/套</title>
 <link>http://www.ewhouse.com/HouseInfo.ASPx?publishId=3440</link>
 <pubDate>2006-10-12 10:50:18</pubDate>
 </item>
</channel>
</rss>
 
 
有幾點值得說明的有:
1、 CreateTextNode,即創建文本結點
有人習慣使用InnerText來添加結點中的文本,雖然結果是一樣的,但是要知道在DOM中文本也是結點,既然要符合DOM標准,就要進行到底!
2、 輸出
我在實例中使用XMLTextWriter輸出。
實際還可以使用如下:
Response.ContentType = "application/xml"; // 輸出並按XML數據顯示
Response.Write(domDoc.InnerXML);
但是,使用XMLTextWriter輸出更快,所以也建議使用這個方法。
 

用XMLTextWriter方法實現如下:

XmlTextWriter writer = new XMLTextWriter(this.Response.OutputStream,System.Text.Encoding.UTF8);
writer.Formatting = Formatting.Indented;
writer.Indentation = 3;

writer.WriteStartDocument();

writer.WriteComment("Create using XMLTextWriter at " + DateTime.Now);

writer.WriteStartElement("rss");
writer.WriteAttributeString("version","2.0");

writer.WriteStartElement("channel");
writer.WriteElementString("title","搜狐焦點新聞");
writer.WriteElementString("link","http://www.sohu.com");
writer.WriteCData("即時報道國內外時政大事,解讀環球焦點事件");

//
//中間添加訪問數據庫部分...
//
writer.WriteEndElement();
writer.WriteEndElement();

writer.Flush();
writer.Close();

這個方法是把xml文件輸出 ,如果要保存為XML文件,第一句用這樣:
XmlTextWriter writer = new XmlTextWriter(Server.MapPath("grade.XML",null); 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved