码迷,mamicode.com
首页 > 其他好文 > 详细

使用NPOI编辑Excel

时间:2020-02-12 14:43:50      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:pre   ng2   code   exce   using   使用   poi   and   excel   

使用NPOI编辑Excel,如果不能保存,需要存到一个新的文件名:

XSSFWorkbook wb1 = null;
using (var file = new FileStream("D:\\banding.xlsx", FileMode.Open, FileAccess.ReadWrite)) {
    wb1 = new XSSFWorkbook(file);
}
wb1.GetSheetAt(0).GetRow(0).GetCell(0).SetCellValue("Sample");

using (var file2 = new FileStream("D:\\banding2.xlsx", FileMode.Create, FileAccess.ReadWrite)) {
    wb1.Write(file2);
    file2.Close();
}

 

 

使用NPOI编辑Excel

标签:pre   ng2   code   exce   using   使用   poi   and   excel   

原文地址:https://www.cnblogs.com/JasonBie/p/12298837.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!