.net 导出Excel插件Npoi的使用

2018-06-22 06:14:17来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1、NuGet搜索Npoi并安装

2、添加引用将包引用进来

3、Controller里引用

4、使用

  public ActionResult ExportExcel()
        {

            
            plist = 数据源
            HSSFWorkbook hssfworkbook = new HSSFWorkbook();
            HSSFSheet sheet1 = (HSSFSheet)hssfworkbook.CreateSheet("Sheet1");
            HSSFRow row = (HSSFRow)sheet1.CreateRow(0);
         
            row.CreateCell(0).SetCellValue("姓名");
            row.CreateCell(1).SetCellValue("序号");
            row.CreateCell(2).SetCellValue("组别");
            row.CreateCell(3).SetCellValue("手机号");
            row.CreateCell(4).SetCellValue("职务");
            row.CreateCell(5).SetCellValue("连锁");
            row.CreateCell(6).SetCellValue("门店");
            row.CreateCell(7).SetCellValue("省份");
            row.CreateCell(8).SetCellValue("城市");
          

            HSSFRow[] rowList = new HSSFRow[plist.Count()];
            int i = 0;
            foreach (var item in plist)
            {
                sheet1.SetColumnWidth(i, 30 * 256);
                rowList[i] = (HSSFRow)sheet1.CreateRow(i + 1);
                sheet1.SetColumnWidth(0, 8 * 256);//将第一列编号的单元格的宽度设置为8个字符
                rowList[i].CreateCell(0).SetCellValue(item.WeiXinUser3.Name);
                rowList[i].CreateCell(1).SetCellValue(item.WeiXinUser3.SerialNum.ToString());
               
                rowList[i].CreateCell(2).SetCellValue(item.GroupName);
                rowList[i].CreateCell(3).SetCellValue(item.WeiXinUser3.MobilePhone);
                rowList[i].CreateCell(4).SetCellValue(item.WeiXinUser3.WorkDuty);
                rowList[i].CreateCell(5).SetCellValue(item.WeiXinUser3.ChainStoreName);
                rowList[i].CreateCell(6).SetCellValue(item.WeiXinUser3.ShopName);
                rowList[i].CreateCell(7).SetCellValue(item.WeiXinUser3.Province.Name);
                rowList[i].CreateCell(8).SetCellValue(item.WeiXinUser3.City.Name);


                i++;
            }

            System.IO.MemoryStream ms = new System.IO.MemoryStream();
            hssfworkbook.Write(ms);
            return File(ms.ToArray(), "application/ms-excel", area.AreaName + "明细.xls");
        }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:nopCommerce 3.9 大波浪系列 之 可退款的支付宝插件(下)

下一篇:MVC 微信开发获取用户OpenID