苏飞论坛

标题: C#将数据导出到Excel的各种方法汇总 [打印本页]

作者: 站长苏飞    时间: 2012-6-30 13:24
标题: C#将数据导出到Excel的各种方法汇总
说实在的分析了这么多感觉还是不够完美
下面我开一个专题全是我实际使用的给大家分享一下
苏飞分享专区
--------------------------------------------------------------------------------------------------------
1.使用流导入的方法
[C#] 纯文本查看 复制代码
  string html = "@006|销售代表|4010200@008|客户代表|4010200@011";
        string[] list = html.ToLower().Split('|');
        string result = "";
        for (int i = 0; i < list.Length; i++)
        {
            if (list.Trim().Contains("@") || list.Trim().Contains("其他"))
            {

            }
            else
            {
                result += list.Trim() + "\r\n";
            }
        }
        StreamWriter sw = new StreamWriter("D:\\abc.xls", false, System.Text.Encoding.UTF8);
        sw.WriteLine(result);
        sw.Close();
        

        
正在更新中,,,
--------------------------------------------------------------------------------------------------------
一、asp.net中导出Excel的方法:
在asp.net中导出Excel有两种方法,一种是将导出的文件存放在服务器某个文件夹下面,然后将文件地址输出在浏览器上;一种是将文件直接将文件输出流写给浏览器。在Response输出时,t分隔的数据,导出Excel时,等价于分列,n等价于换行。
1、将整个html全部输出Excel

此法将html中所有的内容,如按钮,表格,图片等全部输出到Excel中。
[C#] 纯文本查看 复制代码
   Response.Clear();     
   Response.Buffer=   true;     
   Response.AppendHeader("Content-Disposition","attachment;filename="+DateTime.Now.ToString("yyyyMMdd")+".xls");         
   Response.ContentEncoding=System.Text.Encoding.UTF8;   
   Response.ContentType   =   "application/vnd.ms-excel";   
   this.EnableViewState   =   false;   
这里我们利用了ContentType属性,它默认的属性为text/html,这时将输出为超文本,即我们常见的网页格式到客户端,如果改为ms-excel将将输出excel格式,也就是说以电子表格的格式输出到客户端,这时浏览器将提示你下载保存。ContentType的属性还包括:image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword 。同理,我们也可以输出(导出)图片、word文档等。下面的方法,也均用了这个属性。

2、将DataGrid控件中的数据导出Excel
上述方法虽然实现了导出的功能,但同时把按钮、分页框等html中的所有输出信息导了进去。而我们一般要导出的是数据,DataGrid控件上的数据。
[C#] 纯文本查看 复制代码
  
System.Web.UI.Control ctl=this.DataGrid1;
//DataGrid1是你在窗体中拖放的控件
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";
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();
如果你的DataGrid用了分页,它导出的是当前页的信息,也就是它导出的是DataGrid中显示的信息。而不是你select语句的全部信息。
为方便使用,写成方法如下:
[C#] 纯文本查看 复制代码
  
public void DGToExcel(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";
    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();
  }
用法:DGToExcel(datagrid1);
3、将DataSet中的数据导出Excel
有了上边的思路,就是将在导出的信息,输出(Response)客户端,这样就可以导出了。那么把DataSet中的数据导出,也就是把DataSet中的表中的各行信息,以ms-excel的格式Response到http流,这样就OK了。说明:参数ds应为填充有数据表的DataSet,文件名是全名,包括后缀名,如Excel2006.xls
[C#] 纯文本查看 复制代码
 public  void CreateExcel(DataSet ds,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=""; //定义表对象与行对象,同时用DataSet对其值进行初始化DataTable dt=ds.Tables[0];
DataRow[] myRow=dt.Select();//可以类似dt.Select("id>10")之形式达到数据筛选目的
         int i=0;
        int cl=dt.Columns.Count; /取得数据表各列标题,各标题之间以t分割,最后一个列标题后加回车符for(i=0;i<cl;i++)
  {
  if(i==(cl-1))//最后一列,加n
  {
  colHeaders +=dt.Columns.Caption.ToString() +"n";
}
  else
  {
  colHeaders+=dt.Columns.Caption.ToString()+"t";
}
        
}
  resp.Write(colHeaders);
//向HTTP输出流中写入取得的数据信息
   
  //逐行处理数据   
foreach(DataRow row in myRow)
{     
  //当前行数据写入HTTP输出流,并且置空ls_item以便下行数据     
for(i=0;i<cl;i++)
  {
  if(i==(cl-1))//最后一列,加n
  {
  ls_item +=row.ToString()+"n";
}
  else
  {
  ls_item+=row.ToString()+"t";
}
   
  }
  resp.Write(ls_item);
ls_item="";
   
  }   
  resp.End();  
}

4、将dataview导出excel
若想实现更加富于变化或者行列不规则的excel导出时,可用本法。
[C#] 纯文本查看 复制代码
 public void OutputExcel(DataView dv,string str) 
{
   //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();
}

   上面的方面,均将要导出的excel数据,直接给浏览器输出文件流,下面的方法是首先将其存到服务器的某个文件夹中,然后把文件发送到客户端。这样可以持久的把导出的文件存起来,以便实现其它功能。
5、将excel文件导出到服务器上,再下载。
二、winForm中导出Excel的方法:
1、方法1:
   
[C#] 纯文本查看 复制代码
 SqlConnection conn=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["conn"]); 
   SqlDataAdapter da=new SqlDataAdapter("select * from tb1",conn);
   DataSet ds=new DataSet();
   da.Fill(ds,"table1");
   DataTable dt=ds.Tables["table1"];
   string name=System.Configuration.ConfigurationSettings.AppSettings["downloadurl"].ToString()+DateTime.Today.ToString("yyyyMMdd")+new Random(DateTime.Now.Millisecond).Next(10000).ToString()+".csv";//存放到web.config中downloadurl指定的路径,文件格式为当前日期+4位随机数
   FileStream fs=new FileStream(name,FileMode.Create,FileAccess.Write);
   StreamWriter sw=new StreamWriter(fs,System.Text.Encoding.GetEncoding("gb2312"));
   sw.WriteLine("自动编号,姓名,年龄");
   foreach(DataRow dr in dt.Rows)
   {
    sw.WriteLine(dr["ID"]+","+dr["vName"]+","+dr["iAge"]);
   }
   sw.Close();
   Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(name));
   Response.ContentType = "application/ms-excel";// 指定返回的是一个不能被客户端读取的流,必须被下载
   Response.WriteFile(name); // 把文件流发送到客户端
   Response.End();
public void Out2Excel(string sTableName,string url)
{
Excel.Application oExcel=new Excel.Application();
Workbooks oBooks;
Workbook oBook;
Sheets oSheets;
Worksheet oSheet;
Range oCells;
string sFile="",sTemplate="";
//
System.Data.DataTable dt=TableOut(sTableName).Tables[0];

sFile=url+"myExcel.xls";
sTemplate=url+"MyTemplate.xls";
//
oExcel.Visible=false;
oExcel.DisplayAlerts=false;
//定义一个新的工作簿
oBooks=oExcel.Workbooks;
oBooks.Open(sTemplate,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);
oBook=oBooks.get_Item(1);
oSheets=oBook.Worksheets;
oSheet=(Worksheet)oSheets.get_Item(1);
//命名该sheet
oSheet.Name="Sheet1";

oCells=oSheet.Cells;
//调用dumpdata过程,将数据导入到Excel中去
DumpData(dt,oCells);
//保存
oSheet.SaveAs(sFile,Excel.XlFileFormat.xlTemplate,Type.Missing,Type.Missing, Type.Missing, Type.Missing, Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing);
oBook.Close(false, Type.Missing,Type.Missing);
//退出Excel,并且释放调用的COM资源
oExcel.Quit();

GC.Collect();
KillProcess("Excel");
}

private void KillProcess(string processName)
{
System.Diagnostics.Process myproc= new System.Diagnostics.Process();
//得到所有打开的进程
try
{
foreach (Process thisproc in Process.GetProcessesByName(processName))
{
if(!thisproc.CloseMainWindow())
{
thisproc.Kill();
}
}
}
catch(Exception Exc)
{
throw new Exception("",Exc);
}
}

2、方法2:
[C#] 纯文本查看 复制代码
 protected void ExportExcel()
   {
    gridbind();
   if(ds1==null) return;
  
   string saveFileName="";
//   bool fileSaved=false;
    SaveFileDialog saveDialog=new SaveFileDialog();
    saveDialog.DefaultExt ="xls";
    saveDialog.Filter="Excel文件|*.xls";
    saveDialog.FileName ="Sheet1";
    saveDialog.ShowDialog();
    saveFileName=saveDialog.FileName;
    if(saveFileName.IndexOf(":")<0) return; //被点了取消
//   excelapp.Workbooks.Open   (App.path & 工程进度表.xls)
   
   Excel.Application xlApp=new Excel.Application();
    object missing=System.Reflection.Missing.Value;
  

   if(xlApp==null)
    {
     MessageBox.Show("无法创建Excel对象,可能您的机子未安装Excel");
     return;
    }
    Excel.Workbooks workbooks=xlApp.Workbooks;
    Excel.Workbook workbook=workbooks.Add(Excel.XlWBATemplate.xlWBATWorksheet);
    Excel.Worksheet worksheet=(Excel.Worksheet)workbook.Worksheets[1];//取得sheet1
    Excel.Range range;
     
  
   string oldCaption=Title_label .Text.Trim ();
    long totalCount=ds1.Tables[0].Rows.Count;
    long rowRead=0;
    float percent=0;
  
   worksheet.Cells[1,1]=Title_label .Text.Trim ();
    //写入字段
    for(int i=0;i<ds1.Tables[0].Columns.Count;i++)
    {
     worksheet.Cells[2,i+1]=ds1.Tables[0].Columns.ColumnName;  
    range=(Excel.Range)worksheet.Cells[2,i+1];
     range.Interior.ColorIndex = 15;
     range.Font.Bold = true;
   
   }
    //写入数值
    Caption .Visible = true;
    for(int r=0;r<ds1.Tables[0].Rows.Count;r++)
    {
     for(int i=0;i<ds1.Tables[0].Columns.Count;i++)
     {
      worksheet.Cells[r+3,i+1]=ds1.Tables[0].Rows[r];     
    }
     rowRead++;
     percent=((float)(100*rowRead))/totalCount;   
    this.Caption.Text= "正在导出数据["+ percent.ToString("0.00")  +"%]...";
     Application.DoEvents();
    }
    worksheet.SaveAs(saveFileName,missing,missing,missing,missing,missing,missing,missing,missing);
   
    this.Caption.Visible= false;
    this.Caption.Text= oldCaption;
  
   range=worksheet.get_Range(worksheet.Cells[2,1],worksheet.Cells[ds1.Tables[0].Rows.Count+2,ds1.Tables[0].Columns.Count]);
    range.BorderAround(Excel.XlLineStyle.xlContinuous,Excel.XlBorderWeight.xlThin,Excel.XlColorIndex.xlColorIndexAutomatic,null);
   
   range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].ColorIndex = Excel.XlColorIndex.xlColorIndexAutomatic;
    range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].LineStyle =Excel.XlLineStyle.xlContinuous;
    range.Borders[Excel.XlBordersIndex.xlInsideHorizontal].Weight =Excel.XlBorderWeight.xlThin;
  
   if(ds1.Tables[0].Columns.Count>1)
    {
     range.Borders[Excel.XlBordersIndex.xlInsideVertical].ColorIndex=Excel.XlColorIndex.xlColorIndexAutomatic;
     }
    workbook.Close(missing,missing,missing);
    xlApp.Quit();
   }
三、附注:
虽然都是实现导出excel的功能,但在asp.net和winform的程序中,实现的代码是各不相同的。在asp.net中,是在服务器端读取数据,在服务器端把数据以ms-excel的格式,以Response输出到浏览器(客户端);而在winform中,是把数据读到客户端(因为winform运行端就是客户端),然后调用客户端安装的office组件,将读到的数据写在excel

作者: qust_sunfei    时间: 2012-7-5 14:15
不错不错。顶一下
作者: nihaoma    时间: 2012-7-10 20:53
呵呵不错支持!
作者: nihaoma    时间: 2012-7-10 20:55
呵呵不错支持!
作者: jinzaiya    时间: 2012-10-29 21:14
楼主,使用OutputExcel()方法之后提示错误,asp.net没有访问权限,但是IIS已经增加了相应【asp.net电脑用户】、【Authenticated Users】、【Users】等仍然没有解决这个问题。其它人怎么就没有这种烦恼呢?Q:93429585F:\OutPutExcel.jpg
作者: jinzaiya    时间: 2012-10-29 21:17
附件内容。
作者: 站长苏飞    时间: 2012-10-29 21:18
jinzaiya 发表于 2012-10-29 21:14
楼主,使用OutputExcel()方法之后提示错误,asp.net没有访问权限,但是IIS已经增加了相应【asp.net电脑用 ...

Service用户给权限了吗?
作者: zlw0905    时间: 2012-12-21 11:32
太好了,谢谢站长分享{:soso_e113:}
作者: 飛向星空的梦    时间: 2013-1-15 13:38
哥们,帮我看下,我的是什么情况、
作者: 印醒    时间: 2013-1-15 14:47
太好了,谢谢站长分享~
作者: 淘浩哥    时间: 2013-1-30 20:38
怎么没有listview的导出
作者: xinjunit    时间: 2013-4-8 16:27
强烈支持楼主ing……
作者: 0760design    时间: 2013-5-13 10:12
好像下载不了源码
作者: 站长苏飞    时间: 2013-5-13 10:32
0760design 发表于 2013-5-13 10:12
好像下载不了源码

这个不提供下载,就是一些方法

作者: 幻雪丶逆时光    时间: 2013-5-13 10:33
好吧 我被各种 2个字吸引过来了
作者: 采星    时间: 2013-5-20 13:33
强烈支持楼主ing……
作者: gangn    时间: 2013-8-5 20:07
真是难得给力的帖子啊,强烈支持楼主。
作者: banyahui    时间: 2013-8-12 09:34
性能是硬伤……
作者: 站长苏飞    时间: 2013-8-12 10:10
banyahui 发表于 2013-8-12 09:34
性能是硬伤……

你有更好的解决方案?

作者: banyahui    时间: 2013-8-12 10:14
站长苏飞 发表于 2013-8-12 10:10
你有更好的解决方案?

npoi啊,不过只支持xls,办公03版以上的不行,以上的话可以用openxml。不过我是菜鸟,现在就知道点npoi,但性能比直接保存好多了,直接保存依赖excel开7,8哥电脑就卡

作者: 站长苏飞    时间: 2013-8-12 10:23
我一直用直接读流的方法,感觉挺快的,我参与过一个网站日使用量在10W以上还是挺快的,这个我感觉要分情况,如果是简单操作的话估计流比较快,如果是复杂一点的就要用其他组件了。
当然 我们使用的都是比较简单的,只是单纯的导入导出。

作者: banyahui    时间: 2013-8-12 10:28
站长苏飞 发表于 2013-8-12 10:23
我一直用直接读流的方法,感觉挺快的,我参与过一个网站日使用量在10W以上还是挺快的,这个我感觉要分情况 ...

也是,也要看数据量了,导入导出几千条或者几万条数据,用户同时使用的几率也不算大,那肯定犯不着用第三方组件了,但要是高并发,或者数据量比较庞大的话,依赖电脑excel去操作就比较危险了

作者: erp8@live.cn    时间: 2013-8-21 10:40
非常感谢你帮了我的大忙,真的太感谢你啦!
作者: yangsheng    时间: 2013-12-22 09:42
不错
作者: yangsheng    时间: 2013-12-22 09:42
不错
作者: lyg1112    时间: 2014-1-22 18:05
怎么控制导出表格列宽呢?
作者: 站长苏飞    时间: 2014-1-23 08:20
lyg1112 发表于 2014-1-22 18:05
怎么控制导出表格列宽呢?

根据字符数自动生成的,你可以控制下字符数,可以加空格的,还有就是使用专门操作Excel的驱动,不过这样的话电脑必须安装Excel才行
作者: 夜雨蒙蒙    时间: 2014-1-25 13:55
方法很全面,谢谢站长~
作者: JamesCool    时间: 2014-3-20 22:27
[mw_shl_code=csharp,true]  if(i==(cl-1))//最后一列,加n
  {
  colHeaders +=dt.Columns.Caption.ToString() +"n";
}
  else
  {
  colHeaders+=dt.Columns.Caption.ToString()+"t";
}
报错::System.Data.DataColumnCollection不包含“Caption”的定义,楼主请问这是什么原因
作者: 站长苏飞    时间: 2014-3-21 08:06
JamesCool 发表于 2014-3-20 22:27
[mw_shl_code=csharp,true]  if(i==(cl-1))//最后一列,加n
  {
  colHeaders +=dt.Columns.Caption.ToSt ...

这就是取列名的,你看看换个就是了,也许是.net版本的问题。你看看列名是那个属性换一下吧,
作者: JamesCool    时间: 2014-3-21 12:20
导出的Excel版本不兼容怎么解决?比如用Excel2010打开的话会报“你尝试打开的“XXX.xls“的格式与文件扩展名指定文件格式不一致,。。。”的错,同时如果再将这个文件导入的话同样也不能成功?求解。
作者: 天天教程网    时间: 2014-3-29 11:24
不错,历害。
作者: shmily0923    时间: 2014-4-9 08:39
强烈支持楼主ing……
作者: JamesCool    时间: 2014-4-17 17:37
飞哥,有没有C#将数据导出到Pdf的教程,希望发个相关的教程帖,还有C#将数据导出到Excel后打开会显示打开文件与文件扩展名所指定的文件不一致。。。。确定后就能打开了,可我之前看过别人的项目是不会这样提示的,求解。
作者: 站长苏飞    时间: 2014-4-17 17:41
JamesCool 发表于 2014-4-17 17:37
飞哥,有没有C#将数据导出到Pdf的教程,希望发个相关的教程帖,还有C#将数据导出到Excel后打开会显示打开文 ...

http://www.sufeinet.com/thread-1780-1-1.html 参考下吧,没写过这个方法
作者: ╰☆╮画笔落下    时间: 2014-8-11 10:30
飞哥,帮忙看一下为什么在导出excel的时候有时是乱码
   public static bool ExportGridViewToSimpleExcel(Control gvExport)
        {
            try
            {
                HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=Export.xls");
                HttpContext.Current.Response.Charset = "UTF-8";
                HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
                HttpContext.Current.Response.ContentType = "application/ms-excel";//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword
                StringWriter sw = new StringWriter();
                HtmlTextWriter htw = new HtmlTextWriter(sw);
                gvExport.RenderControl(htw);
                HttpContext.Current.Response.Write(sw);
                HttpContext.Current.Response.End();

                return true;
            }
            catch
            {
                return false;
            }
        }
作者: 站长苏飞    时间: 2014-8-11 10:35
╰☆╮画笔落下 发表于 2014-8-11 10:30
飞哥,帮忙看一下为什么在导出excel的时候有时是乱码
   public static bool ExportGridViewToSimpleExcel ...

System.Text.Encoding.GetEncoding("utf-8");修改一下这个编程应该就行了
作者: ╰☆╮画笔落下    时间: 2014-8-11 11:30
站长苏飞 发表于 2014-8-11 10:35
System.Text.Encoding.GetEncoding("utf-8");修改一下这个编程应该就行了

ok了,谢谢
作者: ching126    时间: 2014-9-5 23:39
我只是路过打酱油的。
作者: ashi10086    时间: 2014-9-11 14:43
如果让导出的excel无需重新排版直接是A4范围的,应该怎么做呢
作者: 站长苏飞    时间: 2014-9-11 14:44
ashi10086 发表于 2014-9-11 14:43
如果让导出的excel无需重新排版直接是A4范围的,应该怎么做呢

这个自己控制一下列和行的宽度就行了。得从数据着手,没法直接控制
作者: love'点点    时间: 2014-10-26 23:18
强烈支持楼主ing……
作者: 214679    时间: 2015-3-20 16:41
支持! 謝謝站長分享!
作者: vaseful    时间: 2015-4-26 20:44
listview怎么导出到excel呢???
作者: vaseful    时间: 2015-4-26 20:45

listview怎么导出到excel呢???
作者: aghlqp    时间: 2017-2-27 08:09
强烈支持楼主ing……
作者: 1022heisige    时间: 2020-11-27 10:46
站长,datagrid是easyui专用吗?看着原生态里面没有这个控件啊?
作者: 17kkb    时间: 2021-10-13 22:31
顶一个,谢谢分享
作者: dsqlsd    时间: 2023-5-19 08:34
太好了,谢谢站长分享




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4