首頁 > 軟體

java poi匯入純數位等格式問題及解決

2022-03-17 16:00:12

poi匯入純數位等問題

用poi匯出excel時候,如果單元格設定純數位,輸入的資料一旦過大就是自動顯示成科學記數法,導致匯入後的資料出錯,解決方式,後臺獲取匯出檔案後,強制轉換單元格屬性,就能完美解決,也適用於其他單元格格式引起的資料匯入異常

Cell cellCode = r.getCell(1);
cellCode.setCellType(CellType.STRING);  
info.setCode(r.getCell(1).getStringCellValue());

poi獲取Cell內容:數位之格式化

今天,收到業務方的訴求,說是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

DecimalFormat 是 NumberFormat 的一個具體子類,用於格式化十進位制數位。幫你用最快的速度將數位格式化為你需要的樣子。DecimalFormat 包含一個模式 和一組符號 。

DecimalFormat 類主要靠 # 和 0 兩種預留位置號來指定數位長度。像"####.000"的符號。這個模式意味著在小數點前有四個數位,如果不夠就空著,小數點後有三位數位,不足用0補齊。

符號含義: 

  • 0 一個數位 
  • # 一個數位,不包括 0 
  • . 小數的分隔符的預留位置 
  • , 分組分隔符的預留位置 
  • - 預設負數字首。 
  • % 乘以 100 和作為百分比顯示  

例子: 

    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米
    }

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com