using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.IO; using NPOI.HSSF.UserModel; using NPOI.HPSF; using NPOI.POIFS.FileSystem; using NPOI.SS.UserModel; using NPOI.SS.Util; using System.Web;

namespace Ninesky.Common.Util {     public class NpoiUtil     {         /// <summary>         /// DataTable导出到Excel文件         /// </summary>         /// <param name="dtSource">源DataTable</param>         /// <param name="strHeaderText">表头文本</param>         /// <param name="strFileName">保存位置</param>         public static void Export(DataTable dtSource, string strHeaderText, string strFileName)         {             using (MemoryStream ms = Export(dtSource, strHeaderText))             {                 using (FileStream fs = new FileStream(strFileName, FileMode.Create, FileAccess.Write))                 {                     byte[] data = ms.ToArray();                     fs.Write(data, 0, data.Length);                     fs.Flush();                 }             }         }

/// <summary>         /// DataTable导出到Excel的MemoryStream         /// </summary>         /// <param name="dtSource">源DataTable</param>         /// <param name="strHeaderText">表头文本</param>         public static MemoryStream Export(DataTable dtSource, string strHeaderText)         {             HSSFWorkbook workbook = new HSSFWorkbook();             ISheet sheet = workbook.CreateSheet("Sheet1");

#region 右击文件 属性信息

{                 DocumentSummaryInformation dsi = PropertySetFactory.CreateDocumentSummaryInformation();                 dsi.Company = "Company";                 workbook.DocumentSummaryInformation = dsi;

SummaryInformation si = PropertySetFactory.CreateSummaryInformation();                 si.Author = "Author"; //填加xls文件作者信息

si.ApplicationName = "ApplicationName"; //填加xls文件创建程序信息                 si.LastAuthor = "LastAuthor"; //填加xls文件最后保存者信息

si.Comments = "Comments"; //填加xls文件作者信息

si.Title = "Title"; //填加xls文件标题信息                 si.Subject = "Subject";//填加文件主题信息                 si.CreateDateTime = DateTime.Now;                 workbook.SummaryInformation = si;             }             #endregion

ICellStyle dateStyle = workbook.CreateCellStyle();             IDataFormat format = workbook.CreateDataFormat();             dateStyle.DataFormat = format.GetFormat("yyyy-mm-dd");

//取得列宽             int[] arrColWidth = new int[dtSource.Columns.Count];             foreach (DataColumn item in dtSource.Columns)             {                 arrColWidth[item.Ordinal] = Encoding.GetEncoding(936).GetBytes(item.ColumnName.ToString()).Length;             }

for (int i = 0; i < dtSource.Rows.Count; i++)             {                 for (int j = 0; j < dtSource.Columns.Count; j++)                 {                     int intTemp = Encoding.GetEncoding(936).GetBytes(dtSource.Rows[i][j].ToString()).Length;                     if (intTemp > arrColWidth[j])                     {                         arrColWidth[j] = intTemp;                     }                 }             }             int rowIndex = 0;             foreach (DataRow row in dtSource.Rows)             {                 #region 新建表,填充表头,填充列头,样式                 if (rowIndex == 65535 || rowIndex == 0)                 {                     if (rowIndex != 0)                     {                         sheet = workbook.CreateSheet();                     }

#region 表头及样式

{                         IRow headerRow = sheet.CreateRow(0);                         headerRow.HeightInPoints = 25;                         headerRow.CreateCell(0).SetCellValue(strHeaderText);

ICellStyle headStyle = workbook.CreateCellStyle();                         headStyle.Alignment = HorizontalAlignment.CENTER;                         IFont font = workbook.CreateFont();                         font.FontHeightInPoints = 20;                         font.Boldweight = 700;                         headStyle.SetFont(font);                         headerRow.GetCell(0).CellStyle = headStyle;                         sheet.AddMergedRegion(new CellRangeAddress(0, 0, 0, dtSource.Columns.Count - 1));                         //headerRow.Dispose();                     }                     #endregion

#region 列头及样式

{                         IRow headerRow = sheet.CreateRow(1);                         ICellStyle headStyle = workbook.CreateCellStyle();                         headStyle.Alignment = HorizontalAlignment.CENTER;                         IFont font = workbook.CreateFont();                         font.FontHeightInPoints = 10;                         font.Boldweight = 700;                         headStyle.SetFont(font);                         foreach (DataColumn column in dtSource.Columns)                         {                             headerRow.CreateCell(column.Ordinal).SetCellValue(column.ColumnName);                             headerRow.GetCell(column.Ordinal).CellStyle = headStyle;

//设置列宽                             sheet.SetColumnWidth(column.Ordinal, (arrColWidth[column.Ordinal] + 1) * 256);                         }                         //headerRow.Dispose();                     }                     #endregion

rowIndex = 2;                 }                 #endregion

#region 填充内容                 IRow dataRow = sheet.CreateRow(rowIndex);                 foreach (DataColumn column in dtSource.Columns)                 {                     ICell newCell = dataRow.CreateCell(column.Ordinal);

string drValue = row[column].ToString();

switch (column.DataType.ToString())                     {                         case "System.String"://字符串类型

newCell.SetCellValue(drValue);                             break;                         case "System.DateTime"://日期类型                             DateTime dateV;                             DateTime.TryParse(drValue, out dateV);                             newCell.SetCellValue(dateV);

newCell.CellStyle = dateStyle;//格式化显示

break;                         case "System.Boolean"://布尔型

bool boolV = false;                             bool.TryParse(drValue, out boolV);                             newCell.SetCellValue(boolV);                             break;                         case "System.Int16"://整型                         case "System.Int32":                         case "System.Int64":                         case "System.Byte":                             int intV = 0;                             int.TryParse(drValue, out intV);                             newCell.SetCellValue(intV);                             break;                         case "System.Decimal"://浮点型

case "System.Double":                             double doubV = 0;                             double.TryParse(drValue, out doubV);                             newCell.SetCellValue(doubV);                             break;                         case "System.DBNull"://空值处理

newCell.SetCellValue("");                             break;                         default:                             newCell.SetCellValue("");                             break;                     }

}                 #endregion

rowIndex++;             }             using (MemoryStream ms = new MemoryStream())             {                 workbook.Write(ms);                 ms.Flush();                 ms.Position = 0;

//sheet.Dispose();                 //workbook.Dispose();//一般只用写这一个就OK了,他会遍历并释放所有资源,但当前版本有问题所以只释放sheet                 return ms;             }         }

/// <summary>         /// 用于Web导出         /// </summary>         /// <param name="dtSource">源DataTable</param>         /// <param name="strHeaderText">表头文本</param>         /// <param name="strFileName">文件名</param>         public static void ExportByWeb(DataTable dtSource, string strHeaderText, string strFileName)         {             HttpContext curContext = HttpContext.Current;

// 设置编码和附件格式

curContext.Response.ContentType = "application/vnd.ms-excel";             curContext.Response.ContentEncoding = Encoding.UTF8;             curContext.Response.Charset = "";             curContext.Response.AppendHeader("Content-Disposition",                 "attachment;filename=" + HttpUtility.UrlEncode(strFileName, Encoding.UTF8));

curContext.Response.BinaryWrite(Export(dtSource, strHeaderText).GetBuffer());             curContext.Response.End();         }

/// <summary>读取excel         /// 默认第一行为标头         /// </summary>         /// <param name="strFileName">excel文档路径</param>         /// <returns></returns>         public static DataTable Import(string strFileName)         {             DataTable dt = new DataTable();

HSSFWorkbook hssfworkbook;             using (FileStream file = new FileStream(strFileName, FileMode.Open, FileAccess.Read))             {                 hssfworkbook = new HSSFWorkbook(file);             }             ISheet sheet = hssfworkbook.GetSheetAt(0);             System.Collections.IEnumerator rows = sheet.GetRowEnumerator();

IRow headerRow = sheet.GetRow(0);             int cellCount = headerRow.LastCellNum;

for (int j = 0; j < cellCount; j++)             {                 ICell cell = headerRow.GetCell(j);                 dt.Columns.Add(cell.ToString());             }

for (int i = (sheet.FirstRowNum + 1); i <= sheet.LastRowNum; i++)             {                 IRow row = sheet.GetRow(i);                 DataRow dataRow = dt.NewRow();

for (int j = row.FirstCellNum; j < cellCount; j++)                 {                     if (row.GetCell(j) != null)                         dataRow[j] = row.GetCell(j).ToString();                 }

dt.Rows.Add(dataRow);             }             return dt;         }     } }

NpoiUtil的更多相关文章

  1. NPOI工具类

    NPOI调用方法 DataTable dt = new DataTable(); Dictionary<string, string> header = new Dictionary< ...

随机推荐

  1. iOS开发——MVC详解&Swift+OC

    MVC 设计模式 这两天认真研究了一下MVC设计模式,在iOS开发中这个算是重点中的重点了,如果对MVC模式不理解或者说不会用,那么你iOS肯定学不好,或者写不出好的东西,当然本人目前也在学习中,不过 ...

  2. 解读eXtremeComponents代码结构--转载

    原文地址:http://blog.csdn.net/lark3/article/details/1937466 大致整理了去年写的东西,罗列如下: ec是一系列提供高级显示的开源JSP定制标签,当前的 ...

  3. Ambiguous mapping found. Cannot map 'xxxxController' bean method

    1.背景 今天要做一个demo,从github上clone一个springmvc mybatis的工程(https://github.com/komamitsu/Spring-MVC-sample-u ...

  4. Regular Expressions --正则表达式官方教程

    http://docs.oracle.com/javase/tutorial/essential/regex/index.html This lesson explains how to use th ...

  5. xss脚本攻击

    xss脚本攻击不仅仅只是alert(1)就算完了,xss脚本攻击真正的用处是盗取普通用户的cookie,或者盗取管理员的cookie. xss分类(类型): 1. 反射型xss2. 存储型xss3. ...

  6. Storyboards vs NIB vs Code 大辩论

    前言 做iOS开发的童鞋都应该会纠结一个问题,那就是在做开发的时候是使用StoryBoard还是使用Nibs又或者是Code(纯代码流)呢?笔者也非常纠结这个问题,今天碰巧在raywenderlich ...

  7. linux系统安装(虚拟机以及linux的下载与安装)

    最近开始研究linux系统,以前接触linux系统只是一些简单的命令,例如: pwd:查看当前目录   ls:遍历目录    cd :在目录之间切换等. linux系统是基于unix系统开发的,是一个 ...

  8. javascript原型链简单的理解

    在JavaScript中,一共有两种类型的值,原始值和对象值.每个对象都有一个内部属性[prototype],我们通常称之为原型.原型的值可以是一个对象,也可以是null.当然也可能是一个值,如果它的 ...

  9. [引]LINQ to XML 类概述

    本文转自:http://msdn.microsoft.com/zh-cn/library/bb387023.aspx 本主题提供 System.Xml.Linq 命名空间中 LINQ to XML 类 ...

  10. 在centos 64bit 系统中安装使用WPS office的方法

    1. 安装32位开发库: yum install xulrunner.i686 yum install libXtst.i686 2. 在官网下载 wps-office-8.1.0.3724-0.1. ...