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

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

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