Apache POI格式化Excel文件中的双数字

时间:2014-03-30 10:48:49

标签: java excel apache-poi

我正在使用apache-poi创建一些报告。我有小数点分隔符的问题。现在我在excel文件中显示以下内容:

对于111.2343 - > 111.23

对于111.23 - > 111.23

对于111.2 - > 111.2

对于111 - > 111。(见最后一点)

问题在于111号码。我不想看到尾随点(或逗号,取决于语言)。

这是我当前格式化单元格的代码。这可以用apache-poi来实现吗?

谢谢,

尤利安

PS:有没有办法在poi中使用java.text.Format?我看到这有DecimalFormat setDecimalSeparatorAlwaysShown方法,可以满足我的需要。

private void createColumnStyle(XSSFSheet sheet, int maxRows,int col)
{
    XSSFWorkbook wb = sheet.getWorkbook();

    XSSFFont font = wb.createFont();
    font.setFontHeightInPoints((short)10);
    font.setFontName("Calibri");

    XSSFCellStyle colStyle = wb.createCellStyle();  
    colStyle.setFont(font);                
    colStyle.setAlignment(HorizontalAlignment.RIGHT);

    colStyle.setBorderBottom(XSSFCellStyle.BORDER_THIN);
    colStyle.setBorderTop(XSSFCellStyle.BORDER_THIN);
    colStyle.setBorderRight(XSSFCellStyle.BORDER_THIN);
    colStyle.setBorderLeft(XSSFCellStyle.BORDER_THIN);

    CreationHelper createHelper = wb.getCreationHelper();                   
    colStyle.setDataFormat(createHelper.createDataFormat().getFormat("#,##0.##"));


    for (int i=3; i<maxRows; i++ )
    {
        XSSFCell cell = sheet.getRow(i).createCell(col);
        cell.setCellStyle(colStyle);
    }

}

1 个答案:

答案 0 :(得分:0)

使用DecimalFormat适用于所有情况:

DecimalFormat dec = new DecimalFormat("#.00");
double cellValue = Double.valueOf(dec.format(111));
XSSFCell cell = sheet.createRow(0).createCell(0);
cell.setCellValue(cellValue);

这会将单元格值设置为111