poi export excel, remove the green triangle in the upper left corner

The green triangle in the upper left corner indicates that the type of the cell is text, and you only need to change the type to a number type to remove it.

    // 实际场景中更多的使用BigDecimal存储金额,以此为例
    BigDecimal b = new BigDecimal("441.70");
    cell.setCellValue(b.doubleValue());

 The result is shown in the figure:

 

Guess you like

Origin blog.csdn.net/qsyjrz206/article/details/131209805