POI生成excel
程序员文章站
2022-07-13 13:01:37
...
[b]创建excel文件[/b]
[b]设置字体[/b]
// create a new file
FileOutputStream out=null;
try {
out = new FileOutputStream("e:/workbook.xls");
} catch (FileNotFoundException e) {
e.printStackTrace();
}
// create a new workbook
Workbook wb = new HSSFWorkbook();
// create a new sheet
Sheet s = wb.createSheet();
// declare a row object reference
Row r = null;
// declare a cell object reference
Cell c = null;
// create a row
int rownum=0;
r = s.createRow(rownum);
// create a numeric cell
int cellnum=0;
c = r.createCell(cellnum);
c.setCellValue("cellvalue");
try {
wb.write(out);
out.close();
} catch (IOException e) {
e.printStackTrace();
}
[b]设置字体[/b]
CellStyle cs = wb.createCellStyle();
Font f = wb.createFont();
f.setBoldweight(Font.BOLDWEIGHT_BOLD);
cs.setFont(f);
c = r.createCell(cellnum);
//要先设置style再设置value
c.setCellStyle(cs);
c.setCellValue( "boldfont" );
上一篇: NSView 设置背景色
下一篇: jQuery效果—隐藏与显示
推荐阅读
-
随机生成八位优惠码并保存至Mysql数据库
-
outlook怎么导入联系人?导入excel表格中的联系人的教程
-
python 通过麦克风录音 生成wav文件的方法
-
生成验证码图片与验证码刷新
-
使用 Excel Services ,结合 Analysis Services 在 SharePoint 中发布报表
-
Excel Services OverView系列2 使用Excel Web Access技术在线浏览Excel工作薄
-
图解SSIS批量导入Excel文件的实现方法
-
Excel VBA连接并操作Oracle
-
解析SQLServer获取Excel中所有Sheet的方法
-
C#利用ReportViewer生成报表