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. Asp.Net--上传大文件(页面超时)

    几个方法: 修改文件上传大小的限制 以文件形式保存到服务器 转换成二进制字节流保存到数据库 将二进制通过循环的方式写入磁盘 一.修改文件上传大小的限制 通过对web.config和machine.co ...

  2. HIVE快速入门

    (一)简单入门 1.创建一个表 create table if not exists ljh_emp( name string, salary float, gender string) commen ...

  3. 自己写的简单的jQuery分页控件

    因为是内部项目,需要分页控件,网上找了一大堆,给领导一看,都说不行,原因很简单,太复杂,领导就想要个简单点的,类似百度的分页,可是自己也没写过Jquery控件,硬着头皮找了些资料,写了这个分页控件,目 ...

  4. 3月23日html(四) 格式与布局

    一.position:fixed 锁定位置(相对于浏览器的位置),例如有些网站的右下角的弹出窗口. 二.position:absolute 1.外层没有position:absolute(或relat ...

  5. (转载)MVC 4.0 PartialView()与View()真的一样吗?

    转载自:http://www.cnblogs.com/lori/ 当我们使用razor作为页面引擎时,它的视图文件扩展名为cshtml或者vbshtml,而之前作为分部视图的ascx文件,进行razo ...

  6. nsfocus-笔试题

    1.描述sendmail原理及通讯机制 sendmail程序接受到待发邮件后,通过关键字@判断邮件的格式是否符合要求,匹配成功后提取邮件后缀域名信息并查询DNS数据库相关MX(邮件专用)记录,若有匹配 ...

  7. 同时处理html+js+jquery+css的插件安装(Spket&Aptana插件安装)

    Spket 在线安装方法:Help->Software Updates(或者Install New Software)->Add site Location:http://www.spke ...

  8. windows mongodb 安装

    window平台一下所有命令 务必以管理员身份运行 且在window系统命令行下,如git bash不可以 具体以管理员身份运行的快捷键是 1. win+x 2. shift + a 设置文件存储目录 ...

  9. lucene 使用教程

    原文转自:http://cloudera.iteye.com/blog/656459 1 lucene简介  1.1 什么是lucene  Lucene是一个全文搜索框架,而不是应用产品.因此它并不像 ...

  10. css与 js动画 优缺点比较

    我们经常面临一个抉择:到底使用JavaScript还是CSS动画,下面做一下对比 JS动画 缺点:(1)JavaScript在浏览器的主线程中运行,而主线程中还有其它需要运行的JavaScript脚本 ...