I want to set date in date format in an Excel file with Apache POI. The value will set in such a manner so that in Address Bar it will show as mm/dd/YYYY and in cell it will show as dd-mmm (numeric day and month abbreviation: 01-Jan).
1 Answer
You can apply a CellStyle to the cell you need to fill. Here some code snippets from my past work, it's not intact but shows the basic idea:
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);
More information about date format in JDK, you should read this: http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
-
Thanks @Gavin. It helped me a lot. But I want to remove the timestamp from the date. Can you help me in this regard? Jan 30, 2013 at 12:44
-
What do you mean by "remove the timestamp from the date" ? @SaikatGupta Jan 31, 2013 at 1:59
-
Hi @Gavin: In the excel cell Date should show like "30-JAN" but if I select the cell, in address bar date should show like "1/30/2013" rather than "1/30/2013 12:01:00 AM" (without the timestamp) Jan 31, 2013 at 7:07
-
I changed the date format of the cell value to "yyyy-MM-dd", You can change the format according to your requirement, the format string is quite flexible. @SaikatGupta Jan 31, 2013 at 7:41
-
How do I tell it that I want it in UTC timezone? And where's the documentation for describing which characters I can use in the "getFormat" method?– RingMar 8, 2021 at 18:26