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

笔记12 export to excel (NPOI)

时间:2015-10-08 19:56:23      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

1:filestream

熟悉关于文件操作

==》fs.Seek(0, SeekOrigin.Begin);//每次打开文件,

==》若果重写覆盖的话,必须先清空 fs.SetLength(0);

2:使用命名空间

using (FileStream fs = new FileStream(strFileName, FileMode.OpenOrCreate))

{
fs.Seek(0, SeekOrigin.Begin);
workbook.Write(fs);
// fs.Flush();
}

3:接口的使用

 

笔记12 export to excel (NPOI)

标签:

原文地址:http://www.cnblogs.com/newcoder/p/4861728.html

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