Workbook wb = new HSSFWorkbook();
Sheet sheet = wb.createSheet("new sheet");
// Create a row and put some cells in it. Rows are 0 based.
Row row = sheet.createRow(1);
// Create a new font and alter it.
Font font = wb.createFont();
font.setFontHeightInPoints((short)24);
font.setFontName("Courier New");
font.setItalic(true);
font.setStrikeout(true);
// Fonts are set into a style so create a new one to use.
CellStyle style = wb.createCellStyle();
style.setFont(font);
// Create a cell and put a value in it.
Cell cell = row.createCell(1);
cell.setCellValue("This is a test of fonts");
cell.setCellStyle(style);
// Write the output to a file
FileOutputStream fileOut = new FileOutputStream("E:\\standarcode\\workbook.xls");
wb.write(fileOut);
fileOut.close();
效果:
本文介绍了如何使用Java的Apache POI库中的HSSFWorkbook类来创建包含特定格式单元格的Excel工作簿。通过实例展示了创建Excel工作表、设置字体样式、创建单元格并为其赋值的过程。
609

被折叠的 条评论
为什么被折叠?



