次のチュートリアルを実行して、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);