1
我會通過下面的教程編寫使用POI API在Excel工作表中 http://poi.apache.org/spreadsheet/quick-guide.html#CreateDateCells 日期,但是當我試圖運行的日期提交的代碼顯示「###」,而不是實際日期! 這裏是代碼片段寫作日期使用POI教程
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);
非常感謝你!它解決了我的問題 –