Skip to content

Instantly share code, notes, and snippets.

@rlcc885
Created September 1, 2020 21:44
Show Gist options
  • Select an option

  • Save rlcc885/51dc63a6e5767582c05a4114e39ee7b4 to your computer and use it in GitHub Desktop.

Select an option

Save rlcc885/51dc63a6e5767582c05a4114e39ee7b4 to your computer and use it in GitHub Desktop.
public class FormatDate {
private static CellStyle getFormatAsDate(Workbook workbook) {
CreationHelper creationHelper = workbook.getCreationHelper();
CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setDataFormat(creationHelper.createDataFormat().getFormat("dddd dd/MM/yyyy hh:mm:ss"));
return cellStyle;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment