未验证 提交 5556e47a 编写于 作者: R ruanwenjun 提交者: GitHub

[Feature][Plugin-Email] Numeric data type support in email attachment #5424 (#5426)

上级 fbef290c
......@@ -110,9 +110,13 @@ public class ExcelUtils {
for (int j = 0; j < values.length; j++) {
Cell cell1 = row.createCell(j);
cell1.setCellStyle(cellStyle);
if (values[j] instanceof Number) {
cell1.setCellValue(Double.parseDouble(String.valueOf(values[j])));
} else {
cell1.setCellValue(String.valueOf(values[j]));
}
}
}
for (int i = 0; i < headerList.size(); i++) {
sheet.setColumnWidth(i, headerList.get(i).length() * 800);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册