public string CreateExcel(string SelectedBizType, string strReportDate, DropDownList ddlYQ, DropDownList ddlDataTable, ref string strFilePath)
        {
            Application m_objExcel = new Application();
            int pid;
            GetWindowThreadProcessId(new IntPtr(m_objExcel.Hwnd), out pid);
            Workbooks m_objBooks = (Workbooks)m_objExcel.Workbooks;
            string strTepPath = string.Empty;
            string strTemplate = string.Empty;
            if (SelectedBizType == "3a448698-b695-4a5a-b405-df18f44da86f")
            {
                strTepPath = ConfigurationManager.AppSettings["TRQBBTemplate"];
                strTemplate = "天然气报表.xls";
            }
            else if (SelectedBizType == "969c388f-b0e2-4571-9876-4312b6a74a54")
            {
                strTepPath = ConfigurationManager.AppSettings["YCBBTemplate"];
                strTemplate = "油藏报表.xls";
            }
            try
            {
                string strFileDir = strTepPath + strReportDate + @"/";//将导出的excel保存到该路径下
                if (System.IO.Directory.Exists(strFileDir))//用来解决产能下载不稳定的问题
                {
                    System.IO.Directory.Delete(strFileDir, true);//如果由于上一次导出未成功,而留下了痕迹,先删除此文件夹,再创建
                }
                System.IO.Directory.CreateDirectory(strFileDir);//创建导出文件夹
                IDataBase oDB = DBFactory.GetDBInstance();

string strYQName = string.Empty;
                string strTemplateChild = string.Empty;
                //遍历油区
                for (int i = 0; i < ddlYQ.Items.Count; i++)
                {
                    strYQName = ddlYQ.Items[i].Text;
                    //遍历表
                    for (int j = 0; j < ddlDataTable.Items.Count; j++)
                    {
                        string strShortCode = string.Empty;
                        string strDtName = ddlDataTable.Items[j].Text;
                      strTemplateChild = "XXXXX.xls";
                     strShortCode = "XXXXXXXXXXXX";
                                             //查询业务表数据
                        string strSql = string.Format("select * from " + strShortCode + " where ny='{0}' and yq='{1}'", strReportDate.Substring(0, 6), strYQName);
                        System.Data.DataTable dtLast = oDB.GetDataTable(strSql);
                        if (dtLast.Rows.Count == 0)
                        {
                            continue;
                        }
                        _Workbook m_objBook = (_Workbook)m_objBooks.Add(strTepPath + strTemplateChild);
                        Sheets m_objSheets = (Sheets)m_objBook.Worksheets;
                        _Worksheet m_objSheet = (_Worksheet)(m_objSheets.get_Item(1));
                        //查询表结构字段
                        //                        string strSchama = string.Format(@"select column_name EnKey from user_tab_columns
                        //                                                                                            where upper(table_name)=upper('{0}')
                        //                                                                                            order by COLUMN_ID", strShortCode);
                        //                        System.Data.DataTable dtCols = oDB.GetDataTable(strSchama);
                        //                        string colNames = string.Empty;
                        //                        for (int k = 0; k < dtCols.Rows.Count; k++)
                        //                        {
                        //                            colNames += dtCols.Rows[k][0].ToString() + ",";
                        //                        }
                        //                        if (colNames.Length > 0)
                        //                        {
                        //                            colNames = colNames.Substring(0, colNames.Length - 1);
                        //                        }
                        //                        DownloadMutiRefineTable ddR = new DownloadMutiRefineTable();
                        //                        System.Data.DataTable dtResource = ddR.GetTableSchema(dtLast, colNames);
                        System.Data.DataTable dtResource = dtLast.Copy();
                        //将dataTable中的数据写入sheet
                        int headRows = m_objSheet.UsedRange.Rows.Count;
                        for (int k = 0; k < dtResource.Rows.Count; k++)
                        {
                            for (int m = 0; m < dtResource.Columns.Count; m++)
                            {
                                if (dtResource.Columns[m].ColumnName.ToUpper() == "STATUS")
                                {
                                    continue;
                                }
                                m_objSheet.Cells[k + headRows + 1, m + 1] = dtResource.Rows[k][m].ToString();
                            }
                        }
                        Range rCells = m_objSheet.Range[m_objSheet.Cells[headRows, 1],
                            m_objSheet.Cells[m_objSheet.UsedRange.Rows.Count, m_objSheet.UsedRange.Columns.Count]];  //shiying20140326 用来解决产能下载不稳定的问题
                        rCells.Borders.LineStyle = XlLineStyle.xlContinuous;
                        string save_path = strFileDir + ddlYQ.Items[i].Text + "_" + strReportDate + "_" + strTemplateChild;
                        m_objBook.SaveAs(save_path, XlFileFormat.xlXMLSpreadsheet, null, null, false, false,
                            XlSaveAsAccessMode.xlNoChange, null, null, null, null, null);
                        m_objBook.Close(false, null, null);
                    }
                }
                m_objBooks.Close();
                m_objExcel.Application.Quit();
                m_objExcel.Quit();

//将得到的excel打包
                Crc32 crc = new Crc32();
                strFilePath = strTepPath + strReportDate + strTemplate.Replace(".xls", ".zip");
                ZipOutputStream zos = new ZipOutputStream(File.Create(strFilePath));
                //zos.SetLevel(6);
                DirectoryInfo di = new DirectoryInfo(strFileDir);
                foreach (FileInfo item in di.GetFiles())
                {
                    FileStream fs = File.OpenRead(item.FullName);
                    byte[] buffer = new byte[fs.Length];
                    fs.Read(buffer, 0, buffer.Length);
                    ZipEntry entry = new ZipEntry(strReportDate + strTemplate.Substring(0, strTemplate.Length - 4) + @"/" + item.Name);
                    entry.Size = fs.Length;
                    fs.Close();
                    crc.Reset();
                    crc.Update(buffer);
                    entry.Crc = crc.Value;
                    zos.PutNextEntry(entry);
                    zos.Write(buffer, 0, buffer.Length);
                }
                zos.Finish();
                zos.Close();
                System.IO.Directory.Delete(strFileDir, true);//删除导出文件夹             
            }
            catch (Exception err)
            {
                Message = err.Message;
            }
            return Message;
        }

excel 下载的更多相关文章

  1. Flex Excel下载

    最近做Flex里的Excel下载,用as3xls进行Excel导出后,Excel修改编辑后老出现:不能以当前格式保存...若要保存所做的更改,请单击“确定”,然后将其另存为最新的格式. 最后通过JAV ...

  2. DevExpress中GridView Excel下载

    DevExpress中GridView提供了许多Excel下载的方法,如gridView.ExportToExcelOld(sfdExcelDown.FileName); 在修改Bug时,遇到这样问题 ...

  3. ASP.NET Excel下载方法一览

    方法一 通过GridView(简评:方法比较简单,但是只适合生成格式简单的Excel,且无法保留VBA代码),页面无刷新 aspx.cs部分 using System; using System.Co ...

  4. JS JQuery 操作: Json转 Excel 下载文件

    方法的调用 var json = '[' + '{"申请流水号":"123456","保险公司":"测试数据",&quo ...

  5. 自己挖的坑自己填--jxl进行Excel下载堆内存溢出问题

    今天在进行使用 jxl 进行 Excel 下载时,由于数据量大(4万多条接近5万条数据的下载),数据结构过于负责,存在大量大对象(虽然在对象每次用完都设置为null,但还是存在内存溢出问题),加上本地 ...

  6. PHP Excel 下载数据,并分页下载

    直接上代码: 调用下载Excel: $total=$duoduo->count(MOD.' as a',$where); $objExcel= SelfExcelObject(); //导出 i ...

  7. SpringMVC生成Excel下载

    SpringMVC controller里的方法: @RequestMapping(value="/notify/download",produces = {"appli ...

  8. C# MVC 自定义ActionResult实现EXCEL下载

    前言 在WEB中,经常要使用到将数据转换成EXCEL,并进行下载.这里整理资料并封装了一个自定义ActionResult类,便于使用.如果文章对你有帮助,请点个赞. 话不多少,这里转换EXCEL使用的 ...

  9. 将页面内容转为Excel下载

    使用:method1(table); 说明:参数table为table元素的ID; var idTmr; function getExplorer() { var explorer = window. ...

随机推荐

  1. iOS_SN_百度地图基本使用(1)

    上次用了一次百度地图,一直没有记笔记,今天记一笔. 以前没有用过百度地图的时候,听做这方面的朋友说百度地图有不少的坑,但是我做的时候没有遇到太大的坑,主要是要注意官方文档的注意事项,还有配置环境开发中 ...

  2. angularjs深入理解向指令传递数据,双向绑定机制

    <!DOCTYPE html> <html lang="zh-CN" ng-app="app"> <head> <me ...

  3. poj2486

    题目大意:给出一个树,每个节点有一个值,问从1开始走走k步最多能遍历到最大的值的和:dp[i][j][k] 当i为零是表示如果从j点开始遍历以j为跟的子树,走k步后回到原点的最大值.dp[i][j][ ...

  4. Go语言之异常处理

    在编写Go语言代码的时候,我们应该习惯使用error类型值来表明非正常的状态.作为惯用法,在Go语言标准库代码包中的很多函数和方法也会以返回error类型值来表明错误状态及其详细信息. error是一 ...

  5. js学习笔记——数组方法

    join() 把数组中所有元素转化为字符串并连接起来,并返回该字符串, var arr=[1,2,3]; var str=arr.join("#"); //str="1# ...

  6. virtual pc中添加软盘支持

    最近对操作系统挺有兴趣的,实验了一下!准备找一个虚拟机,之前在xp上使用virtual pc感觉不错,准备在本机上装一下,但是发现居然不支持软盘了! 查阅了各种资料,终于找到了解决的办法. 1. 下载 ...

  7. HTML&CSS基础学习笔记1.27-input提交数据

    提交数据 我们在表单上填的信息很多情况下需要提交到后台. <input>的[type]属性值为“submit”时,表示提交表单数据.它在页面的表现形式也是个按钮,点击该按钮,表单数据将会提 ...

  8. Anisotropic gauss filter

    最近一直在做版面分析,其中文本行检测方面,许多文章涉及到了Anigauss也就是各向异性高斯滤波. 顾名思义,简单的理解就是参数不同的二维高斯滤波. 在文章Fast Anisotropic Gauss ...

  9. 智能卡安全机制比较系列(二)DS SmartCard

    DS Smart Card是飞利浦公司自己开发的一款CPU卡产品,在早期芯片厂商开发自己的COS并进行推广很普遍,现在像英飞凌(前西门子半导体)以及恩智普(前飞利浦半导体)几乎很少推广自己的COS,大 ...

  10. @@ROWCOUNT 含义

    返回受上一语句影响的行数. 如果行数大于 20 亿,请使用 ROWCOUNT_BIG. Transact-SQL 语句可以通过下列方式设置 @@ROWCOUNT 的值: 将 @@ROWCOUNT 设置 ...