asp.net使用MVC4框架基于NPOI做导出数据到Excel表

NPOI 是 POI 项目的 .NET 版本。POI是一个开源的Java读写Excel、WORD等微软OLE2组件文档的项目。

使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写。NPOI是构建在POI 3.x版本之上的,它可以在没有安装Office的情况下对Word/Excel文档进行读写操作。使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写。NPOI是构建在POI 3.x版本之上的,它可以在没有安装Office的情况下对Word/Excel文档进行读写操作。

下面我们使用NPOI在MVC4框架下制作一个导出的功能。

(1)在DAL数据访问层,定义需要需要导出的数据表,可以根据需要导出的字段,进行SQL语句的组织条件。

 public DataTable GetData(){DataTable dt = new DataTable();using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["connStr"].ToString())){string sql = "select [LoginID],[WageID],[Name],[UserLimit],[OnDutyTime],[CarShiFa],[OnDutyDay],[NightOnDuty],[AllNightOnDuty],[CarAllowance],[WorkOvertime],[WeekendNightWork],[WeekendOverNight] from Kaoqinsum where OnDutyTime=datename(yy,getdate()) + '-' + datename(m,dateadd(m,-1,getdate()))";conn.Open();SqlCommand cmd = new SqlCommand(sql, conn);SqlDataAdapter sda = new SqlDataAdapter(cmd);sda.Fill(dt);conn.Close();return dt;}}

  (2)在BLL业务逻辑层,调用数据访问层中的GetDate();

  public DataTable GetDate(){return new SalaryManageDAL.KaoqinsumDAL().GetData();}

  (3)在控制器中,我们来书写导出功能的主要代码。

  public ActionResult DaoChu(){DataTable dt = new SalaryManageBLL.KaoqinsumBLL().GetDate();//1、实例化workbook工作簿对象HSSFWorkbook hssfworkbook = new HSSFWorkbook();//2、创建文档摘要信息DocumentSummaryInformation dsf = PropertySetFactory.CreateDocumentSummaryInformation();dsf.Company = "沈阳工学院";//公司dsf.Category = "Statistics";//类别//CustomProperties 自定义属性SummaryInformation si = PropertySetFactory.CreateSummaryInformation();si.Author = "院办";//作者//Comments 评论 CreateDateTime 创建时间 Template模板si.Keywords = "kaoqin,yuanban";//关键字si.Subject = "kaoqin";//主题si.Title = "考勤汇总";//标题si.RevNumber = "1.0";//版本号//3、将写好的文档摘要 赋值workbook对象hssfworkbook.DocumentSummaryInformation = dsf;hssfworkbook.SummaryInformation = si;//4、创建SheetHSSFSheet Sheet1 = (HSSFSheet)hssfworkbook.CreateSheet("Sheet1");HSSFSheet Sheet2 = (HSSFSheet)hssfworkbook.CreateSheet("Sheet2");HSSFSheet Sheet3 = (HSSFSheet)hssfworkbook.CreateSheet("Sheet3");//5、创建页眉页脚Sheet1.CreateRow(0).CreateCell(1).SetCellValue(123);Sheet1.Header.Center = "统计数据";Sheet1.Header.Left = "logo.png";Sheet1.Header.Right = "zhguAddress";Sheet1.Footer.Center = "page";//6、标题string yeartime = time();HSSFCell fcell = (HSSFCell)Sheet1.CreateRow(0).CreateCell(0);//第一行fcell.SetCellValue("沈阳工学院" + yeartime + "考勤汇总情况表");//文本//合并单元格Sheet1.AddMergedRegion(new CellRangeAddress(0, 0, 0, 13));//2.0使用 2.0以下为Region//标题样式HSSFCellStyle fCellStyle = (HSSFCellStyle)hssfworkbook.CreateCellStyle();HSSFFont ffont = (HSSFFont)hssfworkbook.CreateFont();ffont.FontHeight = 20 * 20;ffont.FontName = "宋体";ffont.Color = HSSFColor.BLUE.index;fCellStyle.SetFont(ffont);fCellStyle.VerticalAlignment = NPOI.SS.UserModel.VerticalAlignment.CENTER;//垂直对齐fCellStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.CENTER;//水平对齐fcell.CellStyle = fCellStyle;//7、设置单元格格式 创建单元格/*模拟设定7列*/HSSFDataFormat dataformat = (HSSFDataFormat)hssfworkbook.CreateDataFormat();//数据格式HSSFFont font = (HSSFFont)hssfworkbook.CreateFont();//数据字体font.Color = HSSFColor.BLACK.index; //颜色 font.IsItalic = false;//斜体font.IsStrikeout = false;//加粗font.FontName = "宋体";//字体//必不可少 可以变更在循环输出数据时指定类型 需要调用sqlDbType 较复杂//Id  int类型HSSFCell cell1 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(0); //创建单元格HSSFCellStyle cellStyle1 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();//单元格样式cellStyle1.DataFormat = HSSFDataFormat.GetBuiltinFormat("");// CellRangeAddressList ranglist1 = new CellRangeAddressList(0, 65535, 0, 0);//集合限定类型// DVConstraint constraint1 = DVConstraint.CreateNumericConstraint(DVConstraint.ValidationType.INTEGER, DVConstraint.OperatorType.BETWEEN, "0", "100");//约束cellStyle1.SetFont(font);cell1.CellStyle = cellStyle1;cell1.SetCellValue("");//NameHSSFCell cell2 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(1);HSSFCellStyle cellStyle2 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle2.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle2.SetFont(font);cell2.CellStyle = cellStyle2;cell2.SetCellValue("");//phoneHSSFCell cell3 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(2);HSSFCellStyle cellStyle3 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle3.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle3.SetFont(font);cell3.CellStyle = cellStyle3;cell3.SetCellValue("");//addressHSSFCell cell4 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(3);HSSFCellStyle cellStyle4 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle4.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle4.SetFont(font);cell4.CellStyle = cellStyle4;cell4.SetCellValue("");//StatusHSSFCell cell5 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(4);HSSFCellStyle cellStyle5 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle5.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle5.SetFont(font);cell5.CellStyle = cellStyle5;cell5.SetCellValue("");//balanceHSSFCell cell6 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(5);HSSFCellStyle cellStyle6 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cell6.SetCellValue("");cellStyle6.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle6.SetFont(font);cell6.CellStyle = cellStyle6;//CreateDateHSSFCell cell7 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(6);HSSFCellStyle cellStyle7 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle7.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle7.SetFont(font);cell7.CellStyle = cellStyle7;cell7.SetCellValue("");HSSFCell cell8 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(7);HSSFCellStyle cellStyle8 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle8.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle8.SetFont(font);cell8.CellStyle = cellStyle8;cell8.SetCellValue("");HSSFCell cell9 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(8);HSSFCellStyle cellStyle9 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle9.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle9.SetFont(font);cell9.CellStyle = cellStyle9;cell9.SetCellValue("");HSSFCell cell10 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(9);HSSFCellStyle cellStyle10 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle10.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle10.SetFont(font);cell10.CellStyle = cellStyle10;cell10.SetCellValue("");HSSFCell cell11 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(10);HSSFCellStyle cellStyle11 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle11.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle11.SetFont(font);cell11.CellStyle = cellStyle11;cell11.SetCellValue("");HSSFCell cell12 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(11);HSSFCellStyle cellStyle12 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle12.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle12.SetFont(font);cell12.CellStyle = cellStyle12;cell12.SetCellValue("");HSSFCell cell13 = (HSSFCell)Sheet1.CreateRow(1).CreateCell(12);HSSFCellStyle cellStyle13 = (HSSFCellStyle)hssfworkbook.CreateCellStyle();cellStyle13.DataFormat = HSSFDataFormat.GetBuiltinFormat("");cellStyle13.SetFont(font);cell13.CellStyle = cellStyle13;cell13.SetCellValue("");//8、创建单元格 加入数据HSSFRow r = (HSSFRow)Sheet1.CreateRow(1);//第二行 标题for (int i = 0; i < dt.Columns.Count; i++){r.CreateCell(i).SetCellValue(dt.Columns[i].ToString());}if (dt.Rows.Count > 0){for (int i = 0; i < dt.Rows.Count; i++){HSSFRow row = (HSSFRow)Sheet1.CreateRow(i + 2);//写入行for (int j = 0; j < dt.Columns.Count; j++)//写入列{if (dt.Columns[j].ColumnName == "balance"){row.CreateCell(j).CellStyle.DataFormat = HSSFDataFormat.GetBuiltinFormat("0.00");row.CreateCell(j).SetCellValue(Convert.ToDouble(dt.Rows[i][j].ToString()));}else{row.CreateCell(j).SetCellValue(dt.Rows[i][j].ToString());}}}}//9、求和 SUM函数HSSFCell cesum = (HSSFCell)Sheet1.CreateRow(Sheet1.LastRowNum + 1).CreateCell(5);//最后一行+1行等于总计行HSSFCell cebegin = (HSSFCell)Sheet1.GetRow(2).GetCell(5);//开始HSSFCell ceend = (HSSFCell)Sheet1.GetRow(Sheet1.LastRowNum - 1).GetCell(5);//结束cesum.SetCellFormula("sum(" + GetA_Z(5) + 3 + ":" + GetA_Z(5) + Sheet1.LastRowNum + ")");FileStream fs = new FileStream(Server.MapPath("~/ExportFiles/" + yeartime + "考勤信息.xls"), FileMode.Create);hssfworkbook.Write(fs);fs.Close();//Response.Write("导出完成");return View();  //return ;}

  

 public string GetA_Z(double p){string[] str = { "0:A", "1:B", "2:C", "3:D", "4:E", "5:F", "6:G", "7:H", "8:I", "9:J", "10:K", "11:L", "12:M", "13:N", "14:O", "15:P", "16:Q", "17:R", "18:S", "19:T", "20:U", "21:V", "22:W", "23:X", "24:Y", "25:Z" };for (int i = 0; i < str.Length; i++){if (p.ToString() == str[i].Split(':')[0].ToString()){return str[i].Split(':')[1].ToString();}}return "";}

  由于实际项目中需要时间的条件限制。定义了一个返回值类型为string的time();

  public String time(){string time = "";DateTime dt = DateTime.Now;int year = dt.Year;int month = dt.Month;if (1 < month && 10 > month){time = year + "-";time += "0";time = time + Convert.ToString(month - 1);}if (month == 1){year = dt.Year - 1;time = Convert.ToString(year) + "-";time += "12";}return time;}

  (4)在前台UI界面定义一个按钮,来实现点击触发控制器中的DaoChu();

<a href="#" id="daochu" class="easyui-linkbutton" data-options="iconCls:'icon-search'">导出数据</a>

  定义id="daochu"所触发的事件。

  

  $("#daochu").click(function () {getdaochu = "/Kaoqinsum/DaoChu";
          //提交执行控制器的方法initDataGrid("#dg", colums, getdaochu);
          //创建个返回值日期,用于导出时对时间的判断,导出对应月份的数据。var date = new Date();var year = date.getFullYear();var month = date.getMonth();var clock;if (0 < month < 10) {clock = year + "-";clock += "0";clock += month;}if (month == 0) {year = date.getFullYear() - 1;clock = year + "-";clock += "12";}if ($("#OnDutyTime").datebox('getValue') != "") {geturl3 = "../ExportFiles/" + $("#OnDutyTime").datebox('getValue') + "考勤信息.xls"; ;window.open(geturl3);}if ($("#OnDutyTime").datebox('getValue') == "") {geturl2 = "../ExportFiles/" + clock + "考勤信息.xls";window.open(geturl2);}})

  

PS:导出的Excel表下载地址http://pan.baidu.com/s/1ntp2izn   密码:mxmo

转载于:https://www.cnblogs.com/ZM-Rid/p/3888532.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/575327.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

bootstrap中表格、修饰图片、浮动、背景框、提示框及关闭提示框、元素淡入淡出及jQuery中操作类名

表格&#xff1a; bootstrap中用类定义了几个风格的表格&#xff0c;使用时给table标签加上类名即可&#xff0c;具体如下&#xff1a; 类名描述.table基础表格&#xff1a;标题加粗&#xff0c;只有水平的淡灰色边框线条&#xff0c;没有垂直方向的线条.table-striped条纹表…

系统数据监控

系统数据监控。 using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; using Arch.CFramework.CLoggingAdapter; using Ctrip.Mobile.AppDownload.Utility;namespace Ctrip.Mobile.AppD…

bootstrap中单个按钮、按钮组、徽章、进度条

单按钮&#xff1a; 背景按钮&#xff1a;bootstrap提供了具有特殊意义背景的按钮样式&#xff0c;使用时只需给自己的按钮(button、input、a)加bootstrap提供的类名即可&#xff0c;其具体如下&#xff1a; 类名描述.btn基本按钮&#xff1a;灰色、有高度、宽度自适应、没有…

openerp child_of操作符深度解析

child_of 此操作符&#xff0c;从代码来看&#xff0c;等价于&#xff1a; [(x,child_of,id)] > x.prarent_left >id.parent_left && x.parent_left < id.parent_right , 求x&#xff08;的集合&#xff09;。 为了形象的说明&#xff0c;我们一步步来&…

bootstrap中分页、面包屑导航、列表组、卡片、下拉菜单、折叠

分页&#xff1a; 分页功能是当遇到数据很多时&#xff0c;如果都放到一个页面上&#xff0c;那么找起来很不方便&#xff0c;而且不利于性能。此时采用分页功能就能很好的优化用户体验&#xff0c;可是如果自己开发分页功能&#xff0c;那么就会影响开发效率&#xff0c;boot…

当ASP.NET Forms验证方式遭遇苹果IOS

一、问题出现 我在用ASP.NET MVC4做微信开发的时候&#xff0c;用Forms验证方式做为authentication。 一般都是在web.config加&#xff1a; <authentication mode"Forms" ><forms loginUrl"~/Account/Login" name"webcookies" sliding…

bootstrap中导航、导航栏、表单及自定义表单

导航&#xff1a; bootstrap中使用列表封装了水平导航&#xff0c;其类样式如&#xff1a; 类名描述.nav给ul或ol&#xff0c;用于清除列表默认样式&#xff0c;并将列表项水平排列.nav-item给li,用于布局.nav-link给li里面的a,用于a布局.justify-content-center用于居中ul或…

Haproxy安装及配置(转)

1.安装 # wget http://haproxy.1wt.eu/download/1.3/src/haproxy-1.3.20.tar.gz # tar zcvf haproxy-1.3.20.tar.gz # cd haproxy-1.3.20 # make TARGETlinux26 PREFIX/usr/local/haproxy #将haproxy安装到/usr/local/haproxy # make install P…

bootstrap中轮播图、模态框、提示框/弹出框、滚动监听、弹性布局、响应式flex、多媒体对象

轮播图&#xff1a; bootstrap封装了轮播图的功能&#xff0c;其具体如下&#xff1a; 类名描述.carousel创建一个轮播图块的容器&#xff0c;实质是做布局用&#xff1b;且此容器应该有一个di属性&#xff0c;其属性值提供给下面左右按钮href锚点值&#xff0c;用于左右按钮…

hive 常用UDF

Hive UDF整理(可以直接在mysql上测试&#xff0c;hive中没有伪表&#xff0c;需要手动创建&#xff0c;反应慢)字符串函数字符串长度函数&#xff1a;length 语法: length(string A)返回值: int说明&#xff1a;返回字符串A的长度举例&#xff1a;hive> select length(‘abc…

摄影网站收集

图虫网 http://tuchong.com/tags/%E9%95%BF%E6%B2%99/?orderweekly&page2 转载于:https://www.cnblogs.com/PS-apple/p/3902533.html

node简介及安装、下载及运行hexo

node简介&#xff1a; 1.node.js的可以打开服务端的黑盒子及高级前端(Vue、React 、Angular)的学习&#xff0c;例如&#xff1a;文件的读写、网络服务的构建、网络通信等。 2.node.js是操作服务器的一种工具&#xff0c;构建于Chrome的v8引擎之上&#xff0c;可以操作服务器…

node中模块系统及核心模块、执行node文件

node中模块系统&#xff1a; 1.模块系统&#xff1a;核心模块、第三方模块、 自己写的模块。 2.网页中所有的路径都是URL&#xff0c;而不是文件路径。 3.node偏底层开发&#xff0c;开启的服务器完全是一个黑盒子&#xff0c;所有的资源默认都是不能被用户访问的&#xff0…

Repository 仓储,你的归宿究竟在哪?(一)-仓储的概念

写在前面 写这篇博文的灵感来自《如何开始DDD(完)》&#xff0c;很感谢young.han兄这几天的坚持&#xff0c;陆陆续续写了几篇有关于领域驱动设计的博文&#xff0c;让园中再次刮了一阵“DDD探讨风”&#xff0c;我现在不像前段时间那样“疯狂”了&#xff0c;写博文需要灵感&a…

node中模板引擎、模块导出、package.json简介

在node.js中使用引擎模板&#xff1a; art-template不仅在浏览器可以使用&#xff0c;也可以在node中使用&#xff0c;并且模板引擎起早诞生于服务器领域&#xff0c;在node中使用模板引擎&#xff1a; 1.安装&#xff1a;在一个文件目录下执行命令&#xff1a;npm install a…

富爸爸穷爸爸

推荐大家看看&#xff0c;虽然我只看了第一章&#xff0c;但是我觉得写的确实挺好的&#xff0c;也确实符合这个社会规律。 老实本分的工作已经是过去式了。为自己工作才是出路。转载于:https://www.cnblogs.com/joysky/p/3909127.html

Java和C++在细节上的差异(转)

Java的基本程序结构、关键字、操作符都和C/C非常相似&#xff0c;以下为主要的几点区别: 一、基本程序设计结构&#xff1a; Java的基本程序结构、关键字、操作符都和C/C非常相似&#xff0c;以下为主要的几点区别&#xff1a; 1. Java的原始数值型数据类型中不包含无符号类型&…

文件路径和模块路径、nodemon工具

文件路径和模块路径&#xff1a; //在文件操作相对路径中&#xff0c;前面的 ./ 可以省略&#xff0c;但是 在模块标识路径中 &#xff0c;前面的 ./ 不能省略。// ./-----表示相对于当前目录 /-------当前文件所属磁盘根目录 var fs require(fs);fs.readFile(t…

Express框架简介、express使用模块引擎、模式数据

Express简介&#xff1a; 原生的http不足以应对我们的开发需求&#xff0c;所以我们需要使用框架来加快我们的开发&#xff0c;这里推荐expressjs&#xff0c;其官网&#xff1a;expressjs.com&#xff0c;中文文档推荐&#xff1a;http://javascript.ruanyifeng.com/nodejs/e…

数据库字段关联更新

MS SQL Server 子查询更新&#xff1a; update log set uin b.uin from log a,logs b where a.accountuin b.accountuin mysql 更新&#xff1a; update t_stat_month_user a INNER JOIN t_dept b on a.op_deptb.op_id set a.dept_short_nameb.dept_short_name;转载于:https:/…