代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Asp.Net
】
NPOI 导出excel
作者:
dezai
/ 发布于
2014/7/2
/
779
using NPOI.HSSF.UserModel; using NPOI.HSSF.Util; using NPOI.DDF; using NPOI.SS.UserModel; using System.IO; using NPOI.SS; #region 导出 protected void btnexcel_Click(object sender, EventArgs e) { QQT_BLL.gg_content bll = new QQT_BLL.gg_content(); DataSet ds = bll.getds(""); DataTable dt = ds.Tables[0]; string excelname = System.DateTime.Now.ToString().Replace(":", "").Replace("-", "").Replace(" ", ""); string filePath = System.Web.HttpContext.Current.Server.MapPath("ReadExcel") + "\\" + excelname + ".xls"; MemoryStream ms = RenderDataTableToExcel(dt) as MemoryStream; FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write); byte[] data = ms.ToArray(); fs.Write(data, 0, data.Length); fs.Flush(); fs.Close(); data = null; ms = null; fs = null; #region 导出到客户端 Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312"); Response.AppendHeader("content-disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(excelname, System.Text.Encoding.UTF8) + ".xls"); Response.ContentType = "Application/excel"; Response.WriteFile(filePath); Response.End(); #endregion } public Stream RenderDataTableToExcel(DataTable SourceTable) { MemoryStream ms = new MemoryStream(); NPOI.HSSF.UserModel.HSSFWorkbook workbook = new NPOI.HSSF.UserModel.HSSFWorkbook(); NPOI.SS.UserModel.ISheet sheet = workbook.CreateSheet(); NPOI.SS.UserModel.IRow headerRow = sheet.CreateRow(0); sheet.SetColumnWidth(7, 100); //foreach (DataColumn column in SourceTable.Columns) // headerRow.CreateCell(column.Ordinal).SetCellValue(column.ColumnName); headerRow.CreateCell(0).SetCellValue("广告编号"); headerRow.CreateCell(1).SetCellValue("广告标题"); headerRow.CreateCell(2).SetCellValue("广告内容"); headerRow.CreateCell(3).SetCellValue("所属广告商"); headerRow.CreateCell(4).SetCellValue("广告电话"); headerRow.CreateCell(5).SetCellValue("广告网址"); headerRow.CreateCell(6).SetCellValue("广告小图片"); headerRow.CreateCell(7).SetCellValue("图片显示"); headerRow.CreateCell(8).SetCellValue("广告大图片"); headerRow.CreateCell(9).SetCellValue("图片显示"); headerRow.CreateCell(10).SetCellValue("审核状态"); int rowIndex = 1; foreach (DataRow row in SourceTable.Rows) { NPOI.SS.UserModel.IRow dataRow = sheet.CreateRow(rowIndex); dataRow.Height = 50; dataRow.CreateCell(0).SetCellValue(row["gg_id"].ToString()); dataRow.CreateCell(1).SetCellValue(row["gg_title"].ToString()); dataRow.CreateCell(2).SetCellValue(row["gg_memo"].ToString()); dataRow.CreateCell(3).SetCellValue(row["ggs_name"].ToString()); dataRow.CreateCell(4).SetCellValue(row["gg_tel"].ToString()); dataRow.CreateCell(5).SetCellValue(row["gg_add"].ToString()); dataRow.CreateCell(6).SetCellValue(row["p_name"].ToString()); string picurl = row["p_url"].ToString(); dataRow.CreateCell(8).SetCellValue(row["gg_check"].ToString()); AddPieChart(sheet, workbook, picurl,rowIndex ,7); rowIndex++; } workbook.Write(ms); ms.Flush(); ms.Position = 0; sheet = null; headerRow = null; workbook = null; return ms; } /// /// 向sheet插入图片 /// /// /// private void AddPieChart(ISheet sheet, HSSFWorkbook workbook, string fileurl,int row,int col) { try { //add picture data to this workbook. string path = Server.MapPath("~/html/"); if (fileurl.Contains("/")) { path += fileurl.Substring( fileurl.IndexOf ('/')); } string FileName = path; byte[] bytes = System.IO.File.ReadAllBytes(FileName); if (!string.IsNullOrEmpty(FileName)) { int pictureIdx = workbook.AddPicture(bytes,NPOI .SS .UserModel .PictureType.JPEG); HSSFPatriarch patriarch = (HSSFPatriarch)sheet.CreateDrawingPatriarch(); HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 100, 50, col , row , col +1, row +1); //##处理照片位置,【图片左上角为(col, row)第row+1行col+1列,右下角为( col +1, row +1)第 col +1+1行row +1+1列,宽为100,高为50 HSSFPicture pict = (HSSFPicture)patriarch.CreatePicture(anchor, pictureIdx); pict.Resize(); } } catch (Exception ex) { throw ex; } } #endregion
试试其它关键字
NPOI
导出excel
同语言下
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
dezai
贡献的其它代码
(
1065
)
.
双色球
.
列出所有物理网络适配器
.
快乐数的 Python 实现
.
计算当月还剩天数
.
猜属相
.
二十四小时时钟
.
每日一语
.
很酷的日历
.
超长日历表单
.
最简单的时钟
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3