我想用 Apache POI 在 Excel 文件中以日期格式设置日期。该值将以这样的方式设置,以便在地址栏中显示为 mm/dd/YYYY,在单元格中显示为 dd-mmm(数字日期和月份缩写:01-Jan)。
问问题
39326 次
1 回答
22
您可以将 aCellStyle
应用于需要填充的单元格。这是我过去工作的一些代码片段,它不是完整的,但显示了基本思想:
Row row = sheet.createRow(0);
Cell cell = row.createCell((short) 0);
cell.setCellType(Cell.CELL_TYPE_NUMERIC);
SimpleDateFormat datetemp = new SimpleDateFormat("yyyy-MM-dd");
Date cellValue = datetemp.parse("1994-01-01 12:00");
cell.setCellValue(cellValue);
//binds the style you need to the cell.
CellStyle dateCellStyle = wb.createCellStyle();
short df = wb.createDataFormat().getFormat("dd-mmm");
dateCellStyle.setDataFormat(df);
cell.setCellStyle(dateCellStyle);
有关 JDK 中日期格式的更多信息,您应该阅读以下内容: http: //docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
于 2013-01-14T07:57:30.403 回答