我正在使用Java apache poi生成Excel,我只需要美化它(带有边框)
以下是我成功创建的Excel
这是我想要的Excel(请参见那些边框,货币和背景色)
这是我的一些代码来生成excel
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet("sheet1");
Row row = sheet.createRow(rowIndex);
row.createCell(0).setCellValue("Product Name");
row.createCell(1).setCellValue("name");
FileOutputStream fileOut = new FileOutputStream("excel.xlsx");
workbook.write(fileOut);
fileOut.flush();
fileOut.close();
不负相思意
相关分类