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. polya定理小结

    polya的精髓就在与对循环节的寻找,其中常遇到的问题就是项链染色类问题. 当项链旋转时有n种置换,循环节的个数分别是gcd(n, i); 当项链翻转时有n种置换,其中当项链珠子数位奇数时,循环节的个 ...

  2. 求解:C#.Net 远程方法调用失败 (Exception from HRESULT: 0x800706BE)

    服务器:Windows Server2003 sp2服务器 客户端:XP SP3 内容:C#Winform客户端调用服务器的Excel模板生成报表的时候,生成失败,抛出的异常如下: TargetInv ...

  3. Javascript 开发IDE

    俗话说,工欲行其事,必先利其器.开发的时候有一款好的IDE,对开发效率的提升是非常帮助的,在此强烈推荐Webstorm,官网网址http://www.jetbrains.com/webstorm/ 主 ...

  4. 窗口过程 - Windows程序设计(SDK)006

    窗口过程 让编程改变世界 Change the world by program 内容节选: Windows 把这样一个窗口分为了客户区和非客户区,这里边白色的这一大片就是客户区,而这些标题栏.菜单栏 ...

  5. iOS 的 APP 在系统中如何适配不同的屏幕的尺寸

    iOS 的 APP 在系统中如何适配不同的屏幕的尺寸 标签: 2007年,初代iPhone发布,屏幕的宽高是 320 x 480 像素.下文也是按照宽度,高度的顺序排列.这个分辨率一直到iPhone ...

  6. 获取android源码时repo的错误

    今天用repo获取android源码:../bin/repo init -u git://android.git.kernel.org/platform/manifest.git出现问题:问题一:Tr ...

  7. 『安全科普』HTTP协议讲解及手工模拟发送

    学习,熟悉HTTP协议,便于以后进行HTTP重放攻击! 0x 01 HTTP协议 查看HTTP协议 先查看鼠标点击一个链接后,浏览器发出了怎样的HTTP请求. Chrome浏览器下,按F12进入开发者 ...

  8. C++ 中 struct和class 的区别

    来自:http://hi.baidu.com/pengxiangbobin19890125/blog/item/b05586eee77300212df53411.html   C++ prime  中 ...

  9. java bootstrap分页

    样式如下 datumMap.total总共多少页 datumMap.page第几页 <nav class="pull-right"> <ul class=&quo ...

  10. 湖南省第六届大学生程序设计大赛原题 F Biggest Number (UVA1182)

    Biggest Number http://acm.hust.edu.cn/vjudge/contest/view.action?cid=30851#problem/F 解题思路:DFS(检索)+BF ...