用poi匯出excel時候,如果儲存格設定純數字,輸入的資料一旦過大就是自動顯示成科學記數法,導致匯入後的資料出錯,解決方式,後台取得匯出檔案後,強制轉換儲存格屬性,就能完美解決,也適用於其他儲存格格式所引起的資料匯入異常
Cell cellCode = r.getCell(1); cellCode.setCellType(CellType.STRING); info.setCode(r.getCell(1).getStringCellValue());
今天,收到業務方的訴求,說是excel 導入的金額,全被四捨五入了。
然後查看了一下程式碼:初始的時候眼花撩亂,真的是看不下去。但想一想,身為程式設計師,不能拒絕為人民服務。於是乎,debug 了一下。我也真是夠懶的,不想直接追代碼,debug去了……
找到了具體的原因:
if (xssfRow.getCellType() == Cell.CELL_TYPE_NUMERIC) { DecimalFormat format = new DecimalFormat("#"); double num = xssfRow.getNumericCellValue(); String res = format.format(num); //…… }
上面程式碼中,把數字格式化為整數了。當然,如果直接取得 value 也不會有問題。
如下:
if (xssfRow.getCellType() == Cell.CELL_TYPE_NUMERIC) { DecimalFormat format = new DecimalFormat("#"); double num = xssfRow.getNumericCellValue(); String res = format.format(num); // num 和 res 的取值差不多。 如: 50.00 : num 为 50.00,res 为 50; 123.23, num 为123.23, res为123.23 System.err.println(num + "--" + res); //…… }
DecimalFormat 是 NumberFormat 的一個具體子類,用於格式化十進位數字。幫你用最快的速度將數字格式化為你需要的樣子。 DecimalFormat 包含一個模式 和一組符號 。
DecimalFormat 類別主要靠 # 和 0 兩種佔位符號來指定數字長度。像是"
#.000"的符號。這個模式意味著在小數點前有四個數字,如果不夠就空著,小數點後面有三位數字,不足用0補齊。符號意義:
public static void main(String[] args) { double pi=3.1415927;//圆周率 //取一位整数 System.out.println(new DecimalFormat("0").format(pi));//3 //取一位整数和两位小数 System.out.println(new DecimalFormat("0.00").format(pi));//3.14 //取两位整数和三位小数,整数不足部分以0填补。 System.out.println(new DecimalFormat("00.000").format(pi));//03.142 //取所有整数部分 System.out.println(new DecimalFormat("#").format(pi));//3 //以百分比方式计数,并取两位小数 System.out.println(new DecimalFormat("#.##%").format(pi));//314.16% long c=299792458;//光速 //显示为科学计数法,并取五位小数 System.out.println(new DecimalFormat("#.#####E0").format(c));//2.99792E8 //显示为两位整数的科学计数法,并取四位小数 System.out.println(new DecimalFormat("00.####E0").format(c));//29.9792E7 //每三位以逗号进行分隔。 System.out.println(new DecimalFormat(",###").format(c));//299,792,458 System.out.println(new DecimalFormat("-###").format(c));//299,792,458 System.out.println(new DecimalFormat("#.##?").format(c));//299,792,458 //将格式嵌入文本 System.out.println(new DecimalFormat("光速大小为每秒,###米").format(c)); //光速大小为每秒299,792,458米 }
以上是如何透過java解決POI導入純數字等格式的問題?的詳細內容。更多資訊請關注PHP中文網其他相關文章!