poi3.8 XSSFWorkbook 单元格显示时间08:00,怎么点击单元格时在公式栏显示时间08:00:00,怎么隐藏日期
时间: 2024-03-01 22:49:16 浏览: 63
固定时间显示,之后隐藏
如果你想要在公式栏中显示时间的完整格式,包括秒数,并且不显示日期,可以使用以下代码:
```java
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet sheet = workbook.createSheet("Sheet1");
XSSFCellStyle cellStyle = workbook.createCellStyle();
cellStyle.setDataFormat(workbook.createDataFormat().getFormat("hh:mm:ss"));
XSSFRow row = sheet.createRow(0);
XSSFCell cell = row.createCell(0);
cell.setCellValue(new Date(0, 0, 0, 8, 0, 0));
cell.setCellStyle(cellStyle);
sheet.setColumnWidth(0, 256 * 8); // 设置列宽,以便完全显示时间
sheet.setForceFormulaRecalculation(true);
```
在上面的代码中,除了设置单元格格式和值以外,我们还调用了`setColumnWidth()`方法,将第一列的宽度设置为8个字符宽度,以便完全显示时间。这样,在公式栏中就只会显示时间的完整格式,不包括日期。同时,我们还调用了`setForceFormulaRecalculation(true)`方法,强制重新计算所有公式,确保公式栏中显示的时间格式是正确的。
阅读全文