Excel内容大概如下:
张三 15801011010
李四 15811001100
解决前打印大致如下:
张三 1.58234ex2 (随意书写)
李四 1.58234ex2 (随意书写)
解决方法:
private String phone; public void setPhone(String phone){ BigDecimal db = new BigDecimal( phone ); this.phone= db.toPlainString() ; }
Excel内容大概如下:
张三 15801011010
李四 15811001100
解决前打印大致如下:
张三 1.58234ex2 (随意书写)
李四 1.58234ex2 (随意书写)
解决方法:
private String phone; public void setPhone(String phone){ BigDecimal db = new BigDecimal( phone ); this.phone= db.toPlainString() ; }