欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

POI生成excel

程序员文章站 2022-07-13 13:01:37
...
[b]创建excel文件[/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" );
相关标签: java poi excel