加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

使用Linq to xml 动态创建Xml文件(数据来自数据库)

发布时间:2020-12-16 05:24:14 所属栏目:百科 来源:网络整理
导读:LINQto XML 是一种启用了 LINQ 的 内存 XML 编程接口,使用它,可以在 .NET Framework 编程语言中处理 XML。 using System.Data.Linq;using System.Xml.Linq;using System.Xml;using System.Text; //数据库连接字符串 GuestBookDataContext ctx = new GuestB

LINQto XML 是一种启用了 LINQ 的内存XML 编程接口,使用它,可以在 .NET Framework 编程语言中处理 XML。

using System.Data.Linq;
using System.Xml.Linq;
using System.Xml;
using System.Text;

    //数据库连接字符串
    GuestBookDataContext ctx = new GuestBookDataContext("server=.;database=GuestBook;uid=sa;pwd=sa");

    var info = from tb in ctx.tbGuestBook select tb;
        
        //声明xml,从foreach开始循环item,把info的数据循环写入xml
         XElement contacts = new XElement("rss",new XAttribute("version","2.0"),new XElement("item"));
        //这里开始循环写数据 
        foreach (var p in info)
        {
            contacts.Element("item").Add(
            new XElement("items",new XElement("ID",p.ID),new XElement("Name",p.UserName),new XElement("DateTime",p.PostTime),new XElement("Content",p.Message),new XElement("Replied",p.IsReplied),new XElement("Reply",p.Reply)
            ));
        } 

        //这里开始操作xml是写入具体的xml文件还是直接输出 
      //如果是写入文件的话用这个 
        contacts.Save("I:/C#练习/item.xml"); 
      //如果是输出的话,先设好输出的类型"text/xml" 
      Response.ContentType = "text/xml"; 
      using (XmlWriter writer = new XmlTextWriter(Response.OutputStream,Encoding.UTF8)) 
      //用contacts的WriteTo方法来写 
      contacts.WriteTo(writer); 
      //这样就OK啦 

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读