美文网首页
设置时间格式的单元格

设置时间格式的单元格

作者: 暗夜行者 | 来源:发表于2020-03-31 14:48 被阅读0次

    [http://poi.apache.org/spreadsheet/quick-guide.html#CreateDateCells]

    CellStyle cellStyle = wb.createCellStyle();
    CreationHelper createHelper = wb.getCreationHelper();
    cellStyle.setDataFormat(
    createHelper.createDataFormat().getFormat("MM/dd/yyyy"));
    cell = row.createCell(1);
    cell.setCellValue(new Date());
    cell.setCellStyle(cellStyle);

    有奇效。。。另外将localdate转换为date的方式:
    Date.from(a.getStartDate().atStartOfDay().atZone(ZoneId.systemDefault()).toInstant())

    相关文章

      网友评论

          本文标题:设置时间格式的单元格

          本文链接:https://www.haomeiwen.com/subject/clvwuhtx.html