I am writing my answer here because it may be helpful to other readers, who might have a slightly different requirement than the questioner here.
I prepare an .xlsx template; all the cells which will be populated with dates, are already formatted as date cells (using Excel).
I open the .xlsx template using Apache POI and then just write the date to the cell, and it works.
In the example below, cell A1 is already formatted from within Excel with the format [$-409]mmm yyyy
, and the Java code is used only to populate the cell.
FileInputStream inputStream = new FileInputStream(new File("Path to .xlsx template"));
Workbook wb = new XSSFWorkbook(inputStream);
Date date1=new Date();
Sheet xlsMainTable = (Sheet) wb.getSheetAt(0);
Row myRow= CellUtil.getRow(0, xlsMainTable);
CellUtil.getCell(myRow, 0).setCellValue(date1);
WHen the Excel is opened, the date is formatted correctly.