using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Reflection;
using System.IO;
using System.Data.SqlClient;
using System.Data;
namespace WebApplication1
{
    public partial class PrintWord : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            // QueryDataSet();
        }
        /// <summary>
        /// 导出
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnPrint_Click(object sender, EventArgs e)
        {
            Print();
        }
        /// <summary>
        /// 导出Word 
        ///生成word解决方案
        ///1.先引入模板
        ///2.判断是否和查询数据集一样的行,如果小于数据集就要增到行数
        ///3. 获取表格并且并且为每一个单元格赋值
        ///4.根据不同的条件来设置单元格的颜色变化
        /// </summary>
        private void Print()
        {
            //先引入word
            Microsoft.Office.Interop.Word.Application app; //明一个应用
            Microsoft.Office.Interop.Word.Document doc;  //创建一个文档
            string TemplateFile = ""; // 声明要使用的模板名称
            string FileName = ""; // 新文件的路径名称
            string Fname = ""; //新文件名称
            app = new Microsoft.Office.Interop.Word.Application();//创建实例应用
            doc = new Microsoft.Office.Interop.Word.Document();  //创建实例文档
            TemplateFile = Server.MapPath("~/test/半月带预测-长安汽车每日快报2015010x.dot"); //Server.MapPath("~/test/CAXSMB.dot");//找到模板
            Fname = DateTime.Now.ToString("测试相同的文档名试试") + ".doc";//创建新文件的名称 yyyymmddhhmmss
            FileName = Server.MapPath("~/test/download/" + Fname);//新文件的路径
            //判断有相同的文档就要删除
            if (File.Exists(FileName))
            {
                File.Delete(FileName);
            }
            File.Copy(TemplateFile, FileName);//把模板拷贝到新文件
            //为新文件设置属性
            object Obj_FileName = FileName;
            object Visible = false;
            object ReadOnly = false;
            object missing = System.Reflection.Missing.Value;
            //创建新文档
            doc = app.Documents.Open(
            ref Obj_FileName, ref missing, ref ReadOnly, ref missing,
            ref missing, ref missing, ref missing, ref missing,
            ref missing, ref missing, ref missing, ref Visible,
            ref missing, ref missing, ref missing,
            ref missing);
            //增加表格
            //DataSet ds = GetDataSet();//获取程序集合
            //int dsCount = ds.Tables[0].Rows.Count;//得到数据库表中的数据
            //int docCount = doc.Tables[1].Rows.Count; //得到文档中表格的数据
            //if (dsCount > docCount) //当实际数据大约表格数据的时候创建行
            //{
            //    //开始增加行
            //    Microsoft.Office.Interop.Word.Table newTable = doc.Tables[1];
            //    for (int row = 0; row < dsCount - docCount; row++)
            //    {
            //        object beforeRow = doc.Tables[1].Rows[docCount-1];
            //        doc.Tables[1].Rows.Add(ref beforeRow); // 行添加到表格中
            //    }
            //}
            doc.Activate();
        
            // 匹配表格数据集
           
            Microsoft.Office.Interop.Word.Document odoc = GetDocument(FileName);//获取新生的文档
            DataSet ds = GetDataSet();//获取程序集合
            //开始判断里面有几个表格/因为模板里面有三张表
            for (int tablePos = 1; tablePos <= odoc.Tables.Count; tablePos++)
            {
                //都一张表的时候
                if (tablePos == 1)
                {
                    int dsCount = ds.Tables[0].Rows.Count;//得到数据库表中的数据
                    int docCount = odoc.Tables[1].Rows.Count; //得到文档中表格的数据
                    if (dsCount > docCount) //当实际数据大约表格数据的时候创建行
                    {
                        //开始增加行
                        Microsoft.Office.Interop.Word.Table newTable = doc.Tables[1];
                        for (int row = 0; row < (dsCount - docCount)+1; row++)
                        {
                            object beforeRow = newTable.Rows[docCount];
                            newTable.Rows.Add(ref beforeRow); // 行添加到表格中
                        }
                    }
                    //表格完成之后开始增加数据,为单元格赋值
                    for (int rcount = 0; rcount < ds.Tables[0].Rows.Count; rcount++)
                    {
                        for (int ccount = 0; ccount < ds.Tables[0].Columns.Count; ccount++)
                        {
                            //doc.Tables[1].Rows[rowPos].Cells[columPos].Range.Text
                            string strText = ds.Tables[0].Rows[rcount][ccount].ToString();
                            doc.Tables[1].Rows[rcount+2].Cells[ccount + 1].Range.Text = strText;//从第二行开始算起
                            if (strText == "r")
                            {
                                doc.Tables[1].Rows[rcount+2].Cells[ccount + 1].Range.Shading.BackgroundPatternColor = Microsoft.Office.Interop.Word.WdColor.wdColorLightBlue;
                            }
                        }
                    }
                }
            }
            //关闭进程
            object IsSave = true;
            doc.Close(ref IsSave, ref missing, ref missing);
            app.Quit(ref IsSave, ref missing, ref missing);            //关闭word进程
            string url = "~/test/download/" + Fname; ;
            Response.Redirect(url);
            System.Runtime.InteropServices.Marshal.ReleaseComObject(app);    //释放内存空间 
        }
        /// <summary>
        /// 查询数据集
        /// </summary>
        /// <returns></returns>
        public DataSet GetDataSet()
        {
            string sConnectionString = "server=.;uid=sa;pwd=123456;database=xiaoshoudb";
            SqlConnection objConn = new SqlConnection(sConnectionString);
            objConn.Open();
            SqlDataAdapter da = new SqlDataAdapter("select * from  yuexiaoshou", objConn);
            DataSet ds = new DataSet();
            da.Fill(ds);
            objConn.Close();
            return ds;
        }
        /// <summary>
        /// 根据文件地址得到该文件下属性
        /// </summary>
        /// <param name="fileRoad"></param>
        /// <returns></returns>
        public Microsoft.Office.Interop.Word.Document GetDocument(string fileRoad)
        {
            Microsoft.Office.Interop.Word.Application app;
            app = new Microsoft.Office.Interop.Word.Application();
            object oFileName = fileRoad;  //Server.MapPath(fileRoad);//根据word的路径         //("~/test/测试读写.docx");  // @"F:\数据库.docx";
            object oReadOnly = false;
            object oMissing = System.Reflection.Missing.Value;
            Microsoft.Office.Interop.Word._Application oWord;
            Microsoft.Office.Interop.Word.Document oDoc;
            oWord = new Microsoft.Office.Interop.Word.Application();
            oWord.Visible = false;
            oDoc = oWord.Documents.Open(ref oFileName, ref oMissing, ref oReadOnly, ref oMissing, ref oMissing,
            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
            return oDoc;
        }
    }
}

C# 导出word 表格代码的更多相关文章

  1. poi导出word表格跨行

    DataCommon.java package com.ksource.pwlp.model.statistic; public class DataCommon { private Long id; ...

  2. poi导出word表格详解 超详细了

    转:非常感谢原作者 poi导出word表格详解 2018年07月20日 10:41:33 Z丶royAl 阅读数:36138   一.效果如下 二.js代码 function export_word( ...

  3. PowerDesiger 15逆向生成工程E-R图及导出word表格

    应用环境:win8(64位)+oracle10g(32位)服务端+PowerDesigner15 需求:oracle数据库中的表结构是web工程框架hibernate 自动生成,现需要将数据库中已有的 ...

  4. c#(.net) 导出 word表格

    做了差不多一周的导出Word,现在把代码贴出来   : ExportWord.cs using System; using System.Collections.Generic; using Syst ...

  5. poi导出word表格

    代码如下: package com.ksource.pwlp.util; import java.io.FileOutputStream; import java.math.BigInteger; i ...

  6. .net使用AsposeWord导出word table表格

    本文为原创,转载请注明出处 1.前言 .net平台下导出word文件还可以使用Microsoft.Office.Interop和NPOI,但是这两者都有缺点,微软的Office.Interop组件需要 ...

  7. Java使用velocity导出word

    效果展示: 使用word编辑好模板

  8. Freemarker + xml 实现Java导出word

    前言 最近做了一个调查问卷导出的功能,需求是将维护的题目,答案,导出成word,参考了几种方案之后,选择功能强大的freemarker+固定格式之后的wordxml实现导出功能.导出word的代码是可 ...

  9. 使用NPOI2.1.3.1版本导出word附带表格和图片

    原文:http://www.cnblogs.com/afutureBoss/p/4074397.html?utm_source=tuicool&utm_medium=referral 最近项目 ...

随机推荐

  1. 5.21leetcode练习

    目录 两数之和 题目 答案 整数反转 题目 思路及答案 回文数 题目 思路及答案 希望每天进步一点点 两数之和 题目 新手司机上路,光荣翻车,没想出来.借了别人的答案,自行领会 答案 整数反转 题目 ...

  2. 浅谈SOCKS5代理与HTTP代理的应用区别

    [1]什么是SOCKS5协议. SOCKS是一种网络传输协议,主要用于客户端与外网服务器之间通讯的中间传递.SOCKS是"Sockets”的缩写. 当防火墙后的客户端要访问外部的服务器时,就 ...

  3. 8 switch case

    当一个case成立,从这个case向后穿透所有case,即使后面的case条件不成立 包括default,直到程序结束或者遇到break程序才结束. 1.case是常量,且不能重复 2.表达式可以是b ...

  4. PAT_A1133#Splitting A Linked List

    Source: PAT A1133 Splitting A Linked List (25 分) Description: Given a singly linked list, you are su ...

  5. 【剑指Offer】剑指offer题目汇总

      本文为<剑指Offer>刷题笔记的总结篇,花了两个多月的时间,将牛客网上<剑指Offer>的66道题刷了一遍,以博客的形式整理了一遍,这66道题属于相对基础的算法题目,对于 ...

  6. 在 ServiceModel 客户端配置部分中,找不到引用协定“XXX”的默认终结点元素

    一.问题 在调用远程web services接口时出现了以下问题: 二.可能的原因和解决方法 网站根目录里的web.config文件缺少了相应的配置信息 <?xml version=" ...

  7. Oracle学习总结(5)—— SQL语句经典案例

    --0.所有员工信息 SELECT * FROM emp --1.选择部门30的所有员工 SELECT * FROM emp WHERE deptno=20 --2.列出所有办事员(CLERK)的姓名 ...

  8. noip模拟赛 gcd

    题目更正:输出的a<b. 分析:这是一道数学题,范围这么大肯定是有规律的,打个表可以发现f(a,b)=k,a+b最小的a,b是斐波那契数列的第k+1项和k+2项.矩阵快速幂搞一搞就好了. #in ...

  9. 清北学堂模拟赛d4t5 b

    分析:一眼树形dp题,就是不会写QAQ.树形dp嘛,定义状态肯定有一维是以i为根的子树,其实这道题只需要这一维就可以了.设f[i]为以i为根的子树中的权值和.先处理子树内部的情况,用一个数组son[i ...

  10. 导出excel - 自用

    export function handerFillZero(num){ return num>=10 ? num : '0'+num; } export function exportExce ...