欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

poi设置日期格式

程序员文章站 2024-02-24 13:44:28
...

方法一:

CreationHelper createHelper=wb.getCreationHelper();
CellStyle cellStyle=wb.createCellStyle(); //单元格样式类
cellStyle.setDataFormat(createHelper.createDataFormat().getFormat("yyy-mm-dd hh:mm:ss"));
cell=row.createCell(1);
cell.setCellValue(new Date());
cell.setCellStyle(cellStyle);

 方法二:

cell=row.createCell(2); 
cell.setCellValue(Calendar.getInstance());
cell.setCellStyle(cellStyle);