.NET通过Aspose.word 导出word 表格

因为工作需要,设计一个导出word表格的功能。
首先导入Aspose.word(网上百度随便下的)
首先建立一个word 模板
利用word自带建立一个表格
然后在下一行的起始位置插入一个书签
具体插入步骤如图
下面直接上代码

string tempFile = HostingEnvironment.MapPath("~/Template/上图设置的模板名称.doc");//获取模板路径
                Document doc = new Document(tempFile);

                DocumentBuilder builder = new DocumentBuilder(doc);
                
                DataTable products = this.IOC_IZTCXService.ExportNJFAJJNML(Request.Params, this.LoginedUser.UserID);   //数据源  (调用的外部方法)
                List<double> widthList = new List<double>();
                for (var i = 0; i < products.Columns.Count; i++)
                {
                    builder.MoveToCell(0, 0, i, 0); //移动单元格
                    double width = builder.CellFormat.Width;//获取单元格宽度
                    widthList.Add(width);
                }
               
                builder.MoveToBookmark("table");        //开始添加值
                for (var m = 0; m < products.Rows.Count; m++)
                {
                    for (var i = 0; i < products.Columns.Count; i++)
                    {
                        builder.InsertCell();            // 添加一个单元格                    
                        builder.CellFormat.Borders.LineStyle = LineStyle.Single;
                        builder.CellFormat.Borders.Color = System.Drawing.Color.Black;
                        builder.CellFormat.Width = widthList[i];
                        builder.CellFormat.VerticalMerge = Aspose.Words.Tables.CellMerge.None;
                        builder.Write(products.Rows[m][i].ToString());
                    }
                    builder.EndRow();
                }
                doc.Range.Bookmarks["table"].Text = "";    // 清掉书签标识  
                MemoryStream outStream = new MemoryStream();
                doc.Save(outStream, SaveFormat.Doc);
                Response.Clear();
                Response.Buffer = true;
                Response.Charset = "utf-8";
                Response.AppendHeader("Content-Disposition", "attachment;filename=" +
                    System.Web.HttpUtility.UrlEncode("导出文件的名称.doc", System.Text.Encoding.UTF8).ToString());
                Response.ContentEncoding = System.Text.Encoding.UTF8;
                Response.ContentType = "application/ms-excel";
                Response.BinaryWrite(outStream.ToArray());
                Response.End();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值