博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NPOI生成EXCEL
阅读量:5297 次
发布时间:2019-06-14

本文共 1440 字,大约阅读时间需要 4 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using NPOI.HSSF.UserModel;using NPOI.POIFS.FileSystem;using NPOI.SS.UserModel;using NPOI.SS.Util;using NPOI.HSSF.Util;using NPOI.HSSF.UserModel.Contrib;using System.IO;namespace ConsoleApplication7{    class Class11    {        static void Main(string[] args)        {            HSSFWorkbook book = new HSSFWorkbook();            Sheet sheet = book.CreateSheet("bb");            FileStream fs = new FileStream(@"C:\Users\jim\Desktop\aaa\aa.xls", FileMode.OpenOrCreate);            for (int i = 0; i < 10; i++)            {                Row row = sheet.CreateRow(i);                for (int j = 0; j < 10; j++)                {                    Cell cell = row.CreateCell(j);                    cell.SetCellValue(10);                    CellStyle cs = book.CreateCellStyle();                    cs.BorderLeft = CellBorderType.THIN;                    cs.BorderBottom = CellBorderType.THIN;                    cs.BorderRight = CellBorderType.THIN;                    cs.BorderTop = CellBorderType.THIN;                    cs.FillBackgroundColor = HSSFColor.RED.index;                    cs.FillForegroundColor = HSSFColor.RED.index;                    cell.CellStyle = cs;                                    }            }            book.Write(fs);            fs.Close();        }    }}

 

转载于:https://www.cnblogs.com/jimzbom/archive/2013/04/11/3015369.html

你可能感兴趣的文章
使用Chrome(PC)调试移动设备上的网页
查看>>
使用gitbash来链接mysql
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
虚拟DOM
查看>>
uva 11468 Substring
查看>>
自建数据源(RSO2)、及数据源增强
查看>>
BootStrap2学习日记2--将固定布局换成响应式布局
查看>>
关于View控件中的Context选择
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
Spark的启动进程详解
查看>>
使用命令创建数据库和表
查看>>
数据库的高级查询
查看>>
机器视觉:SSD Single Shot MultiBox Detector
查看>>
五子棋项目的实现(二)博弈树算法的描述
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>