A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© songFeng4985 中级黑马   /  2012-12-1 20:00  /  1227 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

1、由dataset生成
public void CreateExcel(DataSet ds,string typeid,string FileName)  
  {
   HttpResponse resp;
   resp = Page.Response;
   resp.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
   resp.AppendHeader("Content-Disposition", "attachment;filename=" + FileName);   
   string colHeaders= "", ls_item="";
   int i=0;

   //定义表对象与行对像,同时用DataSet对其值进行初始化
   DataTable dt=ds.Tables[0];
   DataRow[] myRow=dt.Select("");  
   // typeid=="1"时导出为EXCEL格式文件;typeid=="2"时导出为XML格式文件
   if(typeid=="1")
   {
    //取得数据表各列标题,各标题之间以\t分割,最后一个列标题后加回车符
    for(i=0;i     colHeaders+=dt.Columns.Caption.ToString()+"\t";
    colHeaders +=dt.Columns.Caption.ToString() +"\n";   
    //向HTTP输出流中写入取得的数据信息
    resp.Write(colHeaders);  
    //逐行处理数据   
    foreach(DataRow row in myRow)
    {
     //在当前行中,逐列获得数据,数据之间以\t分割,结束时加回车符\n
     for(i=0;i      ls_item +=row.ToString() + "\t";      
     ls_item += row.ToString() +"\n";
     //当前行数据写入HTTP输出流,并且置空ls_item以便下行数据     
     resp.Write(ls_item);
     ls_item="";
    }
   }
   else
   {
    if(typeid=="2")
    {  
     //从DataSet中直接导出XML数据并且写到HTTP输出流中
     resp.Write(ds.GetXml());
    }     
   }
   //写缓冲区中的数据到HTTP头文件中
   resp.End();


  }
2、由datagrid生成
public void ToExcel(System.Web.UI.Control ctl)   
  {
   HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=Excel.xls");
   HttpContext.Current.Response.Charset ="UTF-8";     
   HttpContext.Current.Response.ContentEncoding =System.Text.Encoding.Default;
   HttpContext.Current.Response.ContentType ="application/ms-excel";//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword
   ctl.Page.EnableViewState =false;   
   System.IO.StringWriter  tw = new System.IO.StringWriter() ;
   System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter (tw);
   ctl.RenderControl(hw);
   HttpContext.Current.Response.Write(tw.ToString());
   HttpContext.Current.Response.End();
  }

用法:ToExcel(datagrid1);

3、这个用dataview
public void OutputExcel(DataView dv,string str)
{
   //
   // TODO: 在此处添加构造函数逻辑
   //
                           //dv为要输出到Excel的数据,str为标题名称
   GC.Collect();
   Application excel;// = new Application();
   int rowIndex=4;
   int colIndex=1;

   _Workbook xBk;
   _Worksheet xSt;

   excel= new ApplicationClass();
   
   xBk = excel.Workbooks.Add(true);
   
   xSt = (_Worksheet)xBk.ActiveSheet;

   //
   //取得标题
   //
   foreach(DataColumn col in dv.Table.Columns)
   {
    colIndex++;
    excel.Cells[4,colIndex] = col.ColumnName;
    xSt.get_Range(excel.Cells[4,colIndex],excel.Cells[4,colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//设置标题格式为居中对齐
   }

   //
   //取得表格中的数据
   //
   foreach(DataRowView row in dv)
   {
    rowIndex ++;
    colIndex = 1;
    foreach(DataColumn col in dv.Table.Columns)
    {
     colIndex ++;
     if(col.DataType == System.Type.GetType("System.DateTime"))
     {
      excel.Cells[rowIndex,colIndex] = (Convert.ToDateTime(row[col.ColumnName].ToString())).ToString("yyyy-MM-dd");
      xSt.get_Range(excel.Cells[rowIndex,colIndex],excel.Cells[rowIndex,colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//设置日期型的字段格式为居中对齐
     }
     else
      if(col.DataType == System.Type.GetType("System.String"))
     {
      excel.Cells[rowIndex,colIndex] = "'"+row[col.ColumnName].ToString();
      xSt.get_Range(excel.Cells[rowIndex,colIndex],excel.Cells[rowIndex,colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter;//设置字符型的字段格式为居中对齐
     }
     else
     {
      excel.Cells[rowIndex,colIndex] = row[col.ColumnName].ToString();
     }
    }
   }
   //
   //加载一个合计行
   //
   int rowSum = rowIndex + 1;
   int colSum = 2;
   excel.Cells[rowSum,2] = "合计";
   xSt.get_Range(excel.Cells[rowSum,2],excel.Cells[rowSum,2]).HorizontalAlignment = XlHAlign.xlHAlignCenter;
   //
   //设置选中的部分的颜色
   //
   xSt.get_Range(excel.Cells[rowSum,colSum],excel.Cells[rowSum,colIndex]).Select();
   xSt.get_Range(excel.Cells[rowSum,colSum],excel.Cells[rowSum,colIndex]).Interior.ColorIndex = 19;//设置为浅黄色,共计有56种
   //
   //取得整个报表的标题
   //
   excel.Cells[2,2] = str;
   //
   //设置整个报表的标题格式
   //
   xSt.get_Range(excel.Cells[2,2],excel.Cells[2,2]).Font.Bold = true;
   xSt.get_Range(excel.Cells[2,2],excel.Cells[2,2]).Font.Size = 22;
   //
   //设置报表表格为最适应宽度
   //
   xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Select();
   xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Columns.AutoFit();
   //
   //设置整个报表的标题为跨列居中
   //
   xSt.get_Range(excel.Cells[2,2],excel.Cells[2,colIndex]).Select();
   xSt.get_Range(excel.Cells[2,2],excel.Cells[2,colIndex]).HorizontalAlignment = XlHAlign.xlHAlignCenterAcrossSelection;
   //
   //绘制边框
   //
   xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,colIndex]).Borders.LineStyle = 1;
   xSt.get_Range(excel.Cells[4,2],excel.Cells[rowSum,2]).Borders[XlBordersIndex.xlEdgeLeft].Weight = XlBorderWeight.xlThick;//设置左边线加粗
   xSt.get_Range(excel.Cells[4,2],excel.Cells[4,colIndex]).Borders[XlBordersIndex.xlEdgeTop].Weight = XlBorderWeight.xlThick;//设置上边线加粗
   xSt.get_Range(excel.Cells[4,colIndex],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeRight].Weight = XlBorderWeight.xlThick;//设置右边线加粗
   xSt.get_Range(excel.Cells[rowSum,2],excel.Cells[rowSum,colIndex]).Borders[XlBordersIndex.xlEdgeBottom].Weight = XlBorderWeight.xlThick;//设置下边线加粗
   //
   //显示效果
   //
   excel.Visible=true;

   //xSt.Export(Server.MapPath(".")+"\\"+this.xlfile.Text+".xls",SheetExportActionEnum.ssExportActionNone,Microsoft.Office.Interop.OWC.SheetExportFormat.ssExportHTML);
   xBk.SaveCopyAs(Server.MapPath(".")+"\\"+this.xlfile.Text+".xls");

   ds = null;
            xBk.Close(false, null,null);
   
            excel.Quit();
            System.Runtime.InteropServices.Marshal.ReleaseComObject(xBk);
            System.Runtime.InteropServices.Marshal.ReleaseComObject(excel);
    System.Runtime.InteropServices.Marshal.ReleaseComObject(xSt);
            xBk = null;
            excel = null;
   xSt = null;
            GC.Collect();
   string path = Server.MapPath(this.xlfile.Text+".xls");

   System.IO.FileInfo file = new System.IO.FileInfo(path);
   Response.Clear();
   Response.Charset="GB2312";
   Response.ContentEncoding=System.Text.Encoding.UTF8;
   // 添加头信息,为"文件下载/另存为"对话框指定默认文件名
   Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name));
   // 添加头信息,指定文件大小,让浏览器能够显示下载进度
   Response.AddHeader("Content-Length", file.Length.ToString());
   
   // 指定返回的是一个不能被客户端读取的流,必须被下载
   Response.ContentType = "application/ms-excel";
   
   // 把文件流发送到客户端
   Response.WriteFile(file.FullName);
   // 停止页面的执行
   
   Response.End();

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

1 个回复

正序浏览
:lol朋友,我昨天在刚刚发的asp.net数据导出EXCEL,并在EXCEL中进行分页显示的代码!希望对你有帮助,你的我就不客气的记下来啦哈,互相学习一下
  1. protected void btnExcel_Click(object sender, EventArgs e)

  2.     {

  3.         //导出数据到EXCEL

  4.         string modeFile = Server.MapPath("PrintProvider.xls");

  5.         string tempFile = Server.MapPath("ProviderTemp.xls");//取Excel报表模板

  6.         File.Copy(tempFile, modeFile, true);

  7.         

  8.         Excel.Application xExcel = new Excel.ApplicationClass();//创建excel对象

  9.         Excel.Workbook xBook = xExcel.Workbooks.Open(modeFile, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);

  10.         Excel.Worksheet xSheet = (Excel.Worksheet)xBook.Worksheets[1];



  11.         try

  12.         {

  13.             string sqlStr;         



  14.             sqlStr = "select * from PM_notice";

  15.             DataTable dt = Class1.GetDsFromSql(sqlStr).Tables[0];

  16.             //查询结果数据

  17.             int count = dt.Rows.Count;

  18.             int page = 0;

  19.             if (count % 15 == 0)

  20.             {

  21.                 page = count / 15;

  22.             }

  23.             else

  24.             {

  25.                 page = count / 15 + 1;

  26.             }

  27.             if (page == 0) page = 1;



  28.             int sheet = 1;

  29.             int tempSheet = sheet;

  30.             int p;

  31.             for (p = 1; p < page; p++)

  32.             {

  33.                 xSheet = (Excel.Worksheet)xBook.Worksheets[tempSheet];

  34.                 xSheet.Copy(Type.Missing, xBook.Worksheets[tempSheet]);

  35.                 tempSheet++;

  36.             }

  37.             xBook.Save();

  38.             int index = 0;

  39.             for (p = 0; p < page; p++)

  40.             {

  41.                 xSheet = (Excel.Worksheet)xBook.Worksheets[sheet++];



  42.                 int row = 3;//jjjjjjjjjjjjj

  43.                 for (int i = p * 15; i < (p + 1) * 15 && i < count; i++)

  44.                 {

  45.                     index++;

  46.                     xSheet.Cells[row, 1] = index.ToString();//序号列

  47.                     xSheet.Cells[row, 2] = dt.Rows[i]["title"].ToString();

  48.                     xSheet.Cells[row, 3] = dt.Rows[i]["content"].ToString();

  49.                     xSheet.Cells[row, 4] = dt.Rows[i]["uploader"].ToString();

  50.                     xSheet.Cells[row, 5] = dt.Rows[i]["uploadTime"].ToString();

  51.                     xSheet.Cells[row, 6] = dt.Rows[i]["deadline"].ToString();

  52.                     xSheet.Cells[row, 7] = dt.Rows[i]["remark"].ToString();

  53.                     row++;

  54.                 }

  55.             }

  56.         }

  57.         catch (Exception ee)

  58.         {

  59.             this.lblProviderInfo.Text = "报表生成过程出现错误,请稍后重试!";

  60.         }

  61.         finally

  62.         {

  63.             try

  64.             {

  65.                 xBook.Save();

  66.                 xBook.Close(false, null, null);

  67.                 xExcel.Quit();

  68.                 System.Runtime.InteropServices.Marshal.ReleaseComObject(xBook);

  69.                 System.Runtime.InteropServices.Marshal.ReleaseComObject(xExcel);

  70.                 System.Runtime.InteropServices.Marshal.ReleaseComObject(xSheet);

  71.                 xBook = null;

  72.                 xExcel = null;

  73.                 xSheet = null;

  74.                 GC.Collect();

  75.                 string path = Server.MapPath("PrintProvider.xls");



  76.                 System.IO.FileInfo file = new System.IO.FileInfo(path);

  77.                 Response.Clear();

  78.                 Response.Charset = "GB2312";

  79.                 Response.ContentEncoding = System.Text.Encoding.UTF8;

  80.                 // 添加头信息,为"文件下载/另存为"对话框指定默认文件名

  81.                 Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name));

  82.                 // 添加头信息,指定文件大小,让浏览器能够显示下载进度

  83.                 Response.AddHeader("Content-Length", file.Length.ToString());



  84.                 // 指定返回的是一个不能被客户端读取的流,必须被下载

  85.                 Response.ContentType = "application/ms-excel";



  86.                 // 把文件流发送到客户端

  87.                 Response.WriteFile(file.FullName);

  88.                 // 停止页面的执行



  89.                 Response.End();



  90.             }

  91.             catch (Exception eee)

  92.             {

  93.                 //this.lblProviderInfo.Text = eee.ToString();

  94.             }

  95.         }

  96.     }


复制代码

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马