我已经使用 Apahe POI 将时间输入到 excel 文件中,如下所示
Time time = Time.valueOf("19:30:00");
CellStyle cellStyle1 = workbook.createCellStyle();
CreationHelper createHelper1 = workbook.getCreationHelper();
cellStyle1.setDataFormat(
createHelper.createDataFormat().getFormat("HH:MM AM/PM"));
cell = row.getCell(1);
System.out.println(time.toString());
cell.setCellValue(time);
cell.setCellStyle(cellStyle1);
这导致了预期的 excel 但是有以下不匹配发现 excel 的实际值和显示值不同 - 我怎样才能使它们相同,我是否使用不正确的方式更新 Excel 时间格式的值
慕容森
慕标琳琳
相关分类