//Datatable导出Excel private static void GridToExcelByNPOI(DataTable dt, string strExcelFileName)         {             try             { HSSFWorkbook workbook = new HSSFWorkbook();                  ISheet sheet = workbook.CreateSheet("Sheet1");                  ICellStyle HeadercellStyle = workbook.CreateCellStyle();                 HeadercellStyle.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;                 HeadercellStyle.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;                 HeadercellStyle.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;                 HeadercellStyle.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;                 HeadercellStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center;                 //字体                 NPOI.SS.UserModel.IFont headerfont = workbook.CreateFont();                 headerfont.Boldweight = (short)FontBoldWeight.Bold;                 HeadercellStyle.SetFont(headerfont);                   //用column name 作为列名                 int icolIndex = 0;                 IRow headerRow = sheet.CreateRow(0);                 foreach (DataColumn item in dt.Columns)                 {                     ICell cell = headerRow.CreateCell(icolIndex);                     cell.SetCellValue(item.ColumnName);                     cell.CellStyle = HeadercellStyle;                     icolIndex++;                 }                  ICellStyle cellStyle = workbook.CreateCellStyle();                  //为避免日期格式被Excel自动替换,所以设定 format 为 『@』 表示一率当成text來看                 cellStyle.DataFormat = HSSFDataFormat.GetBuiltinFormat("@");                 cellStyle.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;                 cellStyle.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;                 cellStyle.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;                 cellStyle.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;                   NPOI.SS.UserModel.IFont cellfont = workbook.CreateFont();                 cellfont.Boldweight = (short)FontBoldWeight.Normal;                 cellStyle.SetFont(cellfont);                  //建立内容行                 int iRowIndex = 1;                 int iCellIndex = 0;                 foreach (DataRow Rowitem in dt.Rows)                 {                     IRow DataRow = sheet.CreateRow(iRowIndex);                     foreach (DataColumn Colitem in dt.Columns)                     {                          ICell cell = DataRow.CreateCell(iCellIndex);                         cell.SetCellValue(Rowitem[Colitem].ToString());                         cell.CellStyle = cellStyle;                         iCellIndex++;                     }                     iCellIndex = 0;                     iRowIndex++;                 }                  //自适应列宽度                 for (int i = 0; i < icolIndex; i++)                 {                     sheet.AutoSizeColumn(i);                 }                  //写Excel                 FileStream file = new FileStream(strExcelFileName, FileMode.OpenOrCreate);                 workbook.Write(file);                 file.Flush();                 file.Close();                  MessageBox.Show(m_Common_ResourceManager.GetString("Export_to_excel_successfully"), m_Common_ResourceManager.GetString("Information"), MessageBoxButtons.OK, MessageBoxIcon.Information);             }             catch (Exception ex)             {                 ILog log = LogManager.GetLogger("Exception Log");                 log.Error(ex.Message + Environment.NewLine + ex.StackTrace);                 //记录AuditTrail                 CCFS.Framework.BLL.AuditTrailBLL.LogAuditTrail(ex);                  MessageBox.Show(m_Common_ResourceManager.GetString("Export_to_excel_failed"), m_Common_ResourceManager.GetString("Information"), MessageBoxButtons.OK, MessageBoxIcon.Information);             }             finally { workbook = null; }          }
/// <summary>         /// Excel文件导成Datatable         /// </summary>         /// <param name="strFilePath">Excel文件目录地址</param>         /// <param name="strTableName">Datatable表名</param>         /// <param name="iSheetIndex">Excel sheet index</param>         /// <returns></returns>         public static DataTable XlSToDataTable(string strFilePath, string strTableName,int iSheetIndex)         {              string strExtName = Path.GetExtension(strFilePath);              DataTable dt = new DataTable();             if (!string.IsNullOrEmpty(strTableName))             {                 dt.TableName = strTableName;             }              if (strExtName.Equals(".xls") || strExtName.Equals(".xlsx"))             {                 using (FileStream file = new FileStream(strFilePath, FileMode.Open, FileAccess.Read))                 {                     HSSFWorkbook workbook = new HSSFWorkbook(file);                     ISheet sheet = workbook.GetSheetAt(iSheetIndex);                      //列头                     foreach (ICell item in sheet.GetRow(sheet.FirstRowNum).Cells)                     {                         dt.Columns.Add(item.ToString(),typeof(string));                     }                      //写入内容                     System.Collections.IEnumerator rows = sheet.GetRowEnumerator();                     while(rows.MoveNext())                     {                         IRow row = (HSSFRow)rows.Current;                         if (row.RowNum == sheet.FirstRowNum)                         {                             continue;                         }                          DataRow dr = dt.NewRow();                         foreach (ICell item in row.Cells)                         {                             switch (item.CellType)                             {                                 case CellType.Boolean:                                     dr[item.ColumnIndex] = item.BooleanCellValue;                                     break;                                 case CellType.Error:                                     dr[item.ColumnIndex] = ErrorEval.GetText(item.ErrorCellValue);                                     break;                                 case CellType.Formula:                                     switch (item.CachedFormulaResultType)                                     {                                         case CellType.Boolean:                                             dr[item.ColumnIndex] = item.BooleanCellValue;                                             break;                                         case CellType.Error:                                             dr[item.ColumnIndex] = ErrorEval.GetText(item.ErrorCellValue);                                             break;                                         case CellType.Numeric:                                             if (DateUtil.IsCellDateFormatted(item))                                             {                                                 dr[item.ColumnIndex] = item.DateCellValue.ToString("yyyy-MM-dd hh:MM:ss");                                             }                                             else                                             {                                                 dr[item.ColumnIndex] = item.NumericCellValue;                                             }                                             break;                                         case CellType.String:                                             string str = item.StringCellValue;                                             if (!string.IsNullOrEmpty(str))                                             {                                                 dr[item.ColumnIndex] = str.ToString();                                             }                                             else                                             {                                                 dr[item.ColumnIndex] = null;                                             }                                             break;                                         case CellType.Unknown:                                         case CellType.Blank:                                         default:                                             dr[item.ColumnIndex] = string.Empty;                                             break;                                     }                                     break;                                 case CellType.Numeric:                                     if (DateUtil.IsCellDateFormatted(item))                                     {                                         dr[item.ColumnIndex] = item.DateCellValue.ToString("yyyy-MM-dd hh:MM:ss");                                     }                                     else                                     {                                         dr[item.ColumnIndex] = item.NumericCellValue;                                     }                                     break;                                 case CellType.String:                                     string strValue = item.StringCellValue;                                     if (string.IsNullOrEmpty(strValue))                                     {                                         dr[item.ColumnIndex] = strValue.ToString();                                     }                                     else                                     {                                         dr[item.ColumnIndex] = null;                                     }                                     break;                                 case CellType.Unknown:                                 case CellType.Blank:                                 default:                                     dr[item.ColumnIndex] = string.Empty;                                     break;                             }                         }                         dt.Rows.Add(dr);                     }                 }            }              return dt;         }

Datatable导出Excel的更多相关文章

  1. asp.net DataTable导出Excel 自定义列名

    1.添加引用NPOI.dll 2.cs文件头部添加 using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using System.IO; 3.代码如 ...

  2. c# Datatable导出Excel

    using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using System.Collections.Generic; ...

  3. C# DataTable导出EXCEL后身份证、银行卡号等长数字信息显示乱码解决

    在DataTable导出EXCEL后发现有些格式显示有问题,比如身份证.银行卡号等大于11位的数字显示为科学计数法.13681-1等 带中划线的两段数字显示为日期格式等. 处理方法如下: public ...

  4. 【转】C# DataTable 导出 Excel 进阶 多行表头、合并单元格、中文文件名乱码

    本文原创地址:http://blog.csdn.net/ranbolwb/article/details/8083983 ,转载请保留本行. 本例子是上一篇 DataTable 导出 Excel 的进 ...

  5. DataTable 更改在有数据列的类型方法+DataTable 导出excel功能

    /// <summary> /// 导出功能 /// </summary> /// <param name="sender"></para ...

  6. C# Datatable导出Excel方法

    C# 导出Excel方法  先引用下System.IO;System.data; 具体函数如下: public static bool ExportCSV(DataTable dt, string f ...

  7. NPOI DataTable导出excel

    /// <summary> /// DataTable导出到Excel文件 /// </summary> /// <param name="dtSource&q ...

  8. WinForm 使用 NPOI 2.2.1从datatable导出Excel

    最新的NOPI应该是2.3了,但在官网上还是2.2.1. 也是第一次使用NPOI来导出Excel文件. 在写的时候搜不到2.2.1的教程,搜了一个2.2.0的教程. 不过也没什么问题,NPOI是真的方 ...

  9. 【ASP.NET】DataTable导出EXCEL,弹窗提示下载保存(完整代码)

    //新建ASPX protected void Page_Load(object sender, EventArgs e) { DataTable dt = new DataTable(); Data ...

随机推荐

  1. PLSQL_PLSQL Hint用法总结(概念)

    2014-06-20 Created By BaoXinjian

  2. CSU 1803 2016(数论)

    2016 Problem Description: 给出正整数 n 和 m,统计满足以下条件的正整数对 (a,b) 的数量: 1≤a≤n,1≤b≤m; a×b 是 2016 的倍数. Input: 输 ...

  3. hdu 5441 travel 离线+带权并查集

    Time Limit: 1500/1000 MS (Java/Others)  Memory Limit: 131072/131072 K (Java/Others) Problem Descript ...

  4. 用友UAP

    1, 用友UAP 用友集团UAP中心成立于2013年1月1日,隶属于用友集团,旨在为全球大中型企业和公共组织提供计算平台,并打造完整.统一的软件产业链生态系统,以先进的平台.技术和专业的服务成为客户信 ...

  5. Tomcat的8009端口AJP的利用

    Tomcat在安装的时候会有下面的界面,我们通常部署war,用的最多的是默认的8080端口. 可是当8080端口被防火墙封闭的时候,是否还有办法利用呢? 答案是可以的,可以通过AJP的8009端口,下 ...

  6. CSS学习笔记之定位

    position 有4中不同类型的定位,分别为static.relative.absolute.fixed 1.static 元素框正常生成.块级元素生成一个矩形框,作为文档流的一部分,行内元素则会创 ...

  7. CentOS7 MongoDB安裝

    查看MongoDB的最新版官方下载地址: https://www.mongodb.com/download-center#community 使用wget命令下载安装包 ? 1 wget https: ...

  8. Linux内核学习之路

    每当学习到一定阶段自己觉得还行时,就会搜一些别人的文章. 这篇文章是原作者14年3月写的.转过来与自己共勉.学习累了就换着学也挺好 原文: 现在回首看看,接触Linux已经很长时间了. 在大三的时候开 ...

  9. java程序内存使用

    一.内存使用示意图 二.java运行时数据区域 1.程序计数器: 当前线程所执行字节码的行号提示器. 2.java虚拟机栈: 线程私有,与线程生命周期相同,保存基本数据类型,如果线程所请求的栈深度大于 ...

  10. 修改Tomcat的网站根目录

    想把Tomcat的默认网站根目录修改成自己指定的目录,比如:F:/MyWeb.这样以后把自己写的index.jsp放到该目录下,就能通过http://localhost:8080/index.jsp来 ...