在使用POI设置边框时,可以使用CellStyle的setBorderXXX()方法来设置边框,具体步骤如下:
- 创建Workbook对象,即Excel文件。
Workbook workbook = new XSSFWorkbook();
- 创建Sheet对象,即Excel中的工作表。
Sheet sheet = workbook.createSheet("Sheet1");
- 创建Row对象,即Excel中的行。
Row row = sheet.createRow(0);
- 创建Cell对象,即Excel中的单元格。
Cell cell = row.createCell(0);
- 创建CellStyle对象,用于设置单元格样式。
CellStyle style = workbook.createCellStyle();
- 设置边框样式。
// 设置上边框 style.setBorderTop(BorderStyle.THIN); // 设置下边框 style.setBorderBottom(BorderStyle.THIN); // 设置左边框 style.setBorderLeft(BorderStyle.THIN); // 设置右边框 style.setBorderRight(BorderStyle.THIN);
注意:上述代码中的BorderStyle.THIN表示细线框,如果需要设置其他样式的边框,可以参考BorderThick和BorderMedium等其他枚举值。
- 将CellStyle应用到Cell对象上。
cell.setCellStyle(style);
- 最后,通过输出流将Workbook写入到文件中。
FileOutputStream fileOut = new FileOutputStream("workbook.xlsx"); workbook.write(fileOut); fileOut.close();
以上步骤完成后,单元格的边框就会被设置为细线框。你可以根据需要调整边框线的粗细以及其他样式的设置。