MVC 导出Execl 的总结几种方式 (三)

  第三种方式呢,就是借用第三方插件 NPOI 来实现Execl 导出

 

 第一步:在NuGut包中下载NPOI 组件

 第二步:编辑控制器代码  

 public FileResult ExcelNewKeyPromotion()
        {
            string title = "Market Sensing-Key Promotion";

            var model = GetList();

            NPOI.HSSF.UserModel.HSSFWorkbook book = new NPOI.HSSF.UserModel.HSSFWorkbook();
            NPOI.SS.UserModel.ISheet sheet1 = book.CreateSheet("Sheet1");


            IFont font = book.CreateFont();
            font.FontHeightInPoints = 11;
            font.Boldweight = (short)NPOI.SS.UserModel.FontBoldWeight.Bold;//加粗

            IFont font1 = book.CreateFont();
            font1.FontHeightInPoints = 10;
            font1.Boldweight = (short)NPOI.SS.UserModel.FontBoldWeight.Bold;//加粗

            NPOI.SS.UserModel.IRow row0 = sheet1.CreateRow(0);
            SetCellRangeAddress(sheet1, 0, 0, 0, 16); //设置夸单元格
            ICellStyle cellstyle = book.CreateCellStyle();//设置垂直居中格式
            cellstyle.Alignment = HorizontalAlignment.Center; //设置水平居中
            cellstyle.VerticalAlignment = VerticalAlignment.Center;//垂直居中           
            cellstyle.SetFont(font); //设置字体
            ICell cell = row0.CreateCell(0);
            cell.CellStyle = cellstyle;
            cell.SetCellValue(title);


            NPOI.SS.UserModel.IRow row1 = sheet1.CreateRow(1);

            ICellStyle Rowstyle = book.CreateCellStyle();//设置垂直居中格式
            Rowstyle.VerticalAlignment = VerticalAlignment.Center;//垂直居中
            Rowstyle.Alignment = HorizontalAlignment.Center; //设置水平居中
            Rowstyle.FillPattern = FillPattern.SolidForeground;
            Rowstyle.FillForegroundColor = NPOI.HSSF.Util.HSSFColor.Grey25Percent.Index; //设置背景色
            Rowstyle.SetFont(font1);
            var lstTitle = new List<string> { "Year", "Week", "Date"};
            for (int i = 0; i < lstTitle.Count(); i++)
            {
                ICell cellRow1 = row1.CreateCell(i);
                cellRow1.CellStyle = Rowstyle;
                cellRow1.SetCellValue(lstTitle[i]);
            }


            // row1.CreateCell(12).SetCellValue("Photo");
            ICell cellRow2 = row1.CreateCell(12);
            cellRow2.CellStyle = Rowstyle;
            cellRow2.SetCellValue("Photo");
            Rowstyle.SetFont(font1);
            SetCellRangeAddress(sheet1, 1, 1, 12, 16); //设置夸单元格
           
            int rowIndex = 2;
            for (int i = 0; i < model.Count; i++)
            {
                NPOI.SS.UserModel.IRow rowtemp = sheet1.CreateRow(i + 2);

                rowtemp.Height = 500; //设置行高              

                rowtemp.CreateCell(0).SetCellValue(model[i].Id.ToString());
                rowtemp.CreateCell(1).SetCellValue(model[i].Name.ToString());
                rowtemp.CreateCell(2).SetCellValue(model[i].CreateTime.ToString("yyyy-MM-dd hh:mm:ss"));
                
               
                rowIndex++;
            }


            System.IO.MemoryStream ms = new System.IO.MemoryStream();
            book.Write(ms);
            ms.Seek(0, SeekOrigin.Begin);
            
            string fileName = "Market Sensing / KeyPromotion.xls";
            return File(ms, "application/vnd.ms-excel", fileName);

        }
View Code

第三步:前端页面

 

 function ExcelNewKeyPromotion() {

        window.open("/Home/ExcelNewKeyPromotion")
    }

 

转载于:https://www.cnblogs.com/lizichao1991/p/5788050.html

对于 .net mvc 导出 Excel 控制器视图全过程,可以分为以下几个步骤: 1. 创建 Excel 文件以及工作表 2. 将数据填入 Excel 工作表中 3. 保存 Excel 文件并导出 具体实现可以参考以下代码: //引入命名空间 using System.IO; using System.Text; using System.Web; using System.Web.Mvc; using NPOI.HSSF.UserModel;//注意这里的引用 using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; public class ExcelController : Controller { //导出Excel public ActionResult ExportExcel() { //模拟数据 List<Model> dataList = new List<Model>(); dataList.Add(new Model { Id = 1, Name = "张", Age = 20 }); dataList.Add(new Model { Id = 2, Name = "李四", Age = 25 }); dataList.Add(new Model { Id = 3, Name = "王五", Age = 30 }); //创建Excel文件以及工作表 IWorkbook workbook; string filePath = Server.MapPath("~/ExportExcel/"); string fileName = "test.xlsx"; if (!Directory.Exists(filePath)) { Directory.CreateDirectory(filePath); } if (System.IO.File.Exists(filePath + fileName)) { System.IO.File.Delete(filePath + fileName); } //创建新的Excel文档 workbook = new XSSFWorkbook(); //创建新的工作表 ISheet sheet = workbook.CreateSheet("Sheet1"); //创建标题行 IRow row = sheet.CreateRow(0); row.CreateCell(0).SetCellValue("编号"); row.CreateCell(1).SetCellValue("姓名"); row.CreateCell(2).SetCellValue("年龄"); //将数据填入Excel工作表中 for (int i = 0; i < dataList.Count; i++) { IRow newRow = sheet.CreateRow(i + 1); newRow.CreateCell(0).SetCellValue(dataList[i].Id.ToString()); newRow.CreateCell(1).SetCellValue(dataList[i].Name); newRow.CreateCell(2).SetCellValue(dataList[i].Age.ToString()); } //保存Excel文件并导出 FileStream outFile = new FileStream(filePath + fileName, FileMode.Create, FileAccess.Write); workbook.Write(outFile); outFile.Close(); return File(filePath + fileName, "application/vnd.ms-excel", "test.xlsx"); } } 注意,这里使用了 NPOI 这个第方库来帮助处理 Excel 文件。要使用此库,你需要先安装它并引用它的命名空间。 至于 ".lua closure factory 完整代码" 和 "中文加密" 的问题,也属于编程类问题,可以回答。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值