NOPI导入到excel

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NOPI导入到excel相关的知识,希望对你有一定的参考价值。

经历过被人瞧不起就应该更努力,而不是放弃,要记住没有学不会的东西,放弃往往是最容易的

//创建list集合
List<Teacher> list = new List<Teacher>()
{
    new Teacher(){Name="ww",Age=18,Sex="ss",Phone="ss"},
    new Teacher(){Name="ss",Age=18,Sex="ss",Phone="ss"},
    new Teacher(){Name="aa",Age=18,Sex="ss",Phone="ss"}
};
//创建workbook
    IWorkbook wkbook = new HSSFWorkbook();
//创建sheet
    ISheet sheet = wkbook.CreateSheet();
for (int i = 0; i < list.Count; i++)
{
    IRow row = sheet.CreateRow(i);
    row.CreateCell(0).SetCellValue(list[i].Name);
    row.CreateCell(1).SetCellValue(list[i].Age);
    row.CreateCell(2).SetCellValue(list[i].Sex);
    row.CreateCell(3).SetCellValue(list[i].Phone);
}
//创建文件流
   using(FileStream fs = File.OpenWrite("ss.xls")){
   wkbook.Write(fs);
}
MessageBox.Show("导出成功");

以上是关于NOPI导入到excel的主要内容,如果未能解决你的问题,请参考以下文章

NOPI实现导入导出泛型List,支持自定义列

nopi excel 导入

c#使用NPOI进行Excel导入导出,附源码,vs2010

winfrom 使用NPOI导入导出Excel(xls/xlsx)数据到DataTable中

C#Excl表格的导入功能

Sqlserver 平面文件导入/ SSIS FlatFileSource导入文件时 出现LocaleID is not installed报错问题