這篇文章主要介紹“怎么通過java解決POI導(dǎo)入純數(shù)字等格式問題”,在日常操作中,相信很多人在怎么通過java解決POI導(dǎo)入純數(shù)字等格式問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么通過java解決POI導(dǎo)入純數(shù)字等格式問題”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)公司擁有一支富有激情的企業(yè)網(wǎng)站制作團(tuán)隊(duì),在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)深耕十年,專業(yè)且經(jīng)驗(yàn)豐富。十年網(wǎng)站優(yōu)化營銷經(jīng)驗(yàn),我們已為成百上千中小企業(yè)提供了網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)解決方案,定制制作,設(shè)計(jì)滿意,售后服務(wù)無憂。所有客戶皆提供一年免費(fèi)網(wǎng)站維護(hù)!
用poi導(dǎo)出excel時候,如果單元格設(shè)置純數(shù)字,輸入的數(shù)據(jù)一旦過大就是自動顯示成科學(xué)記數(shù)法,導(dǎo)致導(dǎo)入后的數(shù)據(jù)出錯,解決方式,后臺獲取導(dǎo)出文件后,強(qiáng)制轉(zhuǎn)換單元格屬性,就能完美解決,也適用于其他單元格格式引起的數(shù)據(jù)導(dǎo)入異常
Cell cellCode = r.getCell(1); cellCode.setCellType(CellType.STRING); info.setCode(r.getCell(1).getStringCellValue());
今天,收到業(yè)務(wù)方的訴求,說是excel 導(dǎo)入的金額,全被四舍五入了。
然后查看了一下代碼:初始的時候眼花繚亂,真的是看不下去。但是想一想,作為程序員,不能拒絕為人民服務(wù)。于是乎,debug 了一下。
找到了具體的原因:
if (xssfRow.getCellType() == Cell.CELL_TYPE_NUMERIC) { DecimalFormat format = new DecimalFormat("#"); double num = xssfRow.getNumericCellValue(); String res = format.format(num); //…… }
上面代碼中,把數(shù)字格式化為整數(shù)了。當(dāng)然,如果直接獲取 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 的一個具體子類,用于格式化十進(jìn)制數(shù)字。幫你用最快的速度將數(shù)字格式化為你需要的樣子。DecimalFormat 包含一個模式 和一組符號 。
DecimalFormat 類主要靠 # 和 0 兩種占位符號來指定數(shù)字長度。像"####.000"的符號。這個模式意味著在小數(shù)點(diǎn)前有四個數(shù)字,如果不夠就空著,小數(shù)點(diǎn)后有三位數(shù)字,不足用0補(bǔ)齊。
符號含義:
0 一個數(shù)字
# 一個數(shù)字,不包括 0
. 小數(shù)的分隔符的占位符
, 分組分隔符的占位符
- 缺省負(fù)數(shù)前綴。
% 乘以 100 和作為百分比顯示
例子:
public static void main(String[] args) { double pi=3.1415927;//圓周率 //取一位整數(shù) System.out.println(new DecimalFormat("0").format(pi));//3 //取一位整數(shù)和兩位小數(shù) System.out.println(new DecimalFormat("0.00").format(pi));//3.14 //取兩位整數(shù)和三位小數(shù),整數(shù)不足部分以0填補(bǔ)。 System.out.println(new DecimalFormat("00.000").format(pi));//03.142 //取所有整數(shù)部分 System.out.println(new DecimalFormat("#").format(pi));//3 //以百分比方式計(jì)數(shù),并取兩位小數(shù) System.out.println(new DecimalFormat("#.##%").format(pi));//314.16% long c=299792458;//光速 //顯示為科學(xué)計(jì)數(shù)法,并取五位小數(shù) System.out.println(new DecimalFormat("#.#####E0").format(c));//2.99792E8 //顯示為兩位整數(shù)的科學(xué)計(jì)數(shù)法,并取四位小數(shù) System.out.println(new DecimalFormat("00.####E0").format(c));//29.9792E7 //每三位以逗號進(jìn)行分隔。 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米 }
到此,關(guān)于“怎么通過java解決POI導(dǎo)入純數(shù)字等格式問題”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!