我正在通过以下教程在 Excel 表 http://poi.apache.org/spreadsheet/quick-guide.html#CreateDateCells中使用 poi API 编写日期, 但是当我尝试运行代码时,提交的日期显示“# ##" 而不是实际日期!!这是代码片段
CellStyle cellStyle = wb.createCellStyle();
cellStyle.setDataFormat(createHelper.createDataFormat().getFormat("m/d/yy h:mm"));
Cell cell= row.createCell(4);
cell.setCellValue(new Date());
cell.setCellStyle(cellStyle);