如何用Java Spring格式化Excel?

时间:2019-01-30 05:58:26

标签: java spring-boot format

我导出了一个excel文件,如下图: enter image description here

我要为工作表中的文本编辑“ align_center”。当我合并两行时,我想为其设置“中心”格式。 这是后端代码:

def perform_Calculations(request):
       #Performing calculations 

1 个答案:

答案 0 :(得分:0)

我认为有必要像在标头单元格中一样在所有单元格中设置样式。

首先,为常规单元格创建一个样式:

CellStyle regularCellStyle = workbook.createCellStyle();
regularCellStyle setAlignment(HorizontalAlignment.CENTER);

之后,创建单元格并将其存储在变量中。

Cell cellA = row.createCell(0);
cellA.setCellValue(workingTimeReportResponse.getUserName());
cellA.setCellStyle(regularCellStyle);