我们遇到一个问题,即当使用JExcel API从Java代码设置值时,xls模板中设置为“Numeric Forrmat”的单元格格式将被取消(或)更改为General。
NumberFormat nf = new NumberFormat("#####.###");
WritableCellFormat format = new WritableCellFormat(nf);
ezCostSheet.setProtected(false);
format.setLocked(false);
format.setBorder(Border.ALL, BorderLineStyle.THIN, Colour.BLUE2);
cell.setCellFormat(format);
如果有人尝试过并解决了,请告诉我们解决方案。