2016-07-03 9 views

Antwort

1

Sie tun dies genau die gleiche Weise, die Sie in Excel tun sich ändern Zelle - geben Sie die Nummer 400 dann anwenden Zellformatierung sie zu zwingen, die führende Nullen haben

Als covered in the Apache POI docs, Sie‘ d mache etwas wie:

// Do this once 
Workbook wb = new HSSFWorkbook(); 
Sheet sheet = wb.createSheet("format sheet"); 
DataFormat format = wb.createDataFormat(); 

// Styles are per-workbook not per-cell 
CellStyle style5Zeros = wb.createCellStyle(); 
style5Zeros.setDataFormat(format.getFormat("00000")); 

// Create a cell and style 
Row row = sheet.createRow(0); 
Cell cell = row.createCell(0); 
cell.setCellValue(400); 
cell.setCellStyle(style5Zeros);