使用col_types = c('text', ...)代替coltypes = 'text',并在vector中定义every列的类型。
value=new DecimalFormat().format(cell.getNumericCellValue());//这里得到的是用“,”隔开的数字串 value = value.replace(",", ""); 结果如下: 为了方便设置数字格式,这里简单总结了 DecimalFormat顺的构造方法,如下: DecimalFormat下的方法不再一一展示,有需要的可以查询一下。 以上为个人经验,希望能给大家...
使用col_types = c('text', ...)代替coltypes = 'text',并在vector中定义every列的类型。
这⾥不能使⽤String.valueOf( ) ⽅法进⾏转换。解决问题:使⽤数字类型格式化类 DecimalFormat顺利地解决了这个问题,如下⽅法:value=new DecimalFormat().format(cell.getNumericCellValue());//这⾥得到的是⽤“,”隔开的数字串 value = value.replace(",", "");结果如下: