您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了java常用工具類,數(shù)字工具類的具體代碼,供大家參考,具體內(nèi)容如下
package com.jarvis.base.util; import java.math.BigDecimal; import java.text.DecimalFormat; import java.text.NumberFormat; import java.util.Random; public class NumericHelper { /** * 描述:通過一個(gè)整數(shù)i獲取你所要的哪幾個(gè)(從0開始) i為 多個(gè)2的n次方之和,如i=7,那么根據(jù)原值是2的n次方之各,你的原值必定是1,2,4 。 * * @param i * 數(shù)值 * @return */ public static int[] getWhich(long i) { int exp = Math.getExponent(i); if (i == (1 << (exp + 1)) - 1) { exp = exp + 1; } int[] num = new int[exp]; int x = exp - 1; for (int n = 0; (1 << n) < i + 1; n++) { if ((1 << (n + 1)) > i && (1 << n) < (i + 1)) { num[x] = n; i -= 1 << n; n = 0; x--; } } return num; } /** * 描述:非四舍五入取整處理 * * @param v * 需要四舍五入的數(shù)字 * @return */ public static int roundDown(double v) { BigDecimal b = new BigDecimal(Double.toString(v)); BigDecimal one = new BigDecimal("1"); return b.divide(one, 0, BigDecimal.ROUND_DOWN).intValue(); } /** * 描述:四舍五入取整處理 * * @param v * 需要四舍五入的數(shù)字 * @return */ public static int roundUp(double v) { BigDecimal b = new BigDecimal(Double.toString(v)); BigDecimal one = new BigDecimal("1"); return b.divide(one, 0, BigDecimal.ROUND_UP).intValue(); } /** * 描述:提供精確的小數(shù)位四舍五入處理。 * * @param v * 需要四舍五入的數(shù)字 * @param scale * 小數(shù)點(diǎn)后保留幾位 * @return 四舍五入后的結(jié)果 */ public static double round(double v, int scale) { if (scale < 0) { throw new IllegalArgumentException("The scale must be a positive integer or zero"); } BigDecimal b = new BigDecimal(Double.toString(v)); BigDecimal one = new BigDecimal("1"); return b.divide(one, scale, BigDecimal.ROUND_HALF_UP).doubleValue(); } /** * 描述:四舍五入保留兩位小數(shù) * * @param num * 數(shù)字 * @return 保留兩位小數(shù)的數(shù)字字串 */ public static String format(double num) { return format(num, "0.00"); } /** * 描述:四舍五入數(shù)字保留小數(shù)位 * * @param num * 數(shù)字 * @param digits * 小數(shù)位 * @return */ public static String format(double num, int digits) { String pattern = "0"; if (digits > 0) { pattern += "." + createStr("0", digits, ""); } return format(num, pattern); } /** * 描述:生成字符串 * * @param arg0 * 字符串元素 * @param arg1 * 生成個(gè)數(shù) * @param arg2 * 間隔符號(hào) * @return */ private static String createStr(String arg0, int arg1, String arg2) { if (arg0 == null) { return ""; } else { StringBuffer sb = new StringBuffer(); for (int i = 0; i < arg1; i++) { if (arg2 == null) arg2 = ""; sb.append(arg0).append(arg2); } if (sb.length() > 0) { sb.delete(sb.lastIndexOf(arg2), sb.length()); } return sb.toString(); } } /** * 描述:數(shù)字格式化 * * @param num * 數(shù)字 * @param pattern * 格式 * @return */ public static String format(double num, String pattern) { NumberFormat fmt = null; if (pattern != null && pattern.length() > 0) { fmt = new DecimalFormat(pattern); } else { fmt = new DecimalFormat(); } return fmt.format(num); } /** * 求浮點(diǎn)數(shù)的權(quán)重 * * @param number * @return */ public static double weight(double number) { if (number == 0) { return 1; } double e = Math.log10(Math.abs(number)); int n = Double.valueOf(Math.floor(e)).intValue(); double weight = 1; if (n > 0) { for (int i = 0; i < n; i++) { weight *= 10; } } else { for (int i = 0; i > n; i--) { weight /= 10; } } return weight; } /** * 獲得權(quán)重的單位 * * @param scale * @return */ public static String unit(double scale) { if (scale == 1 || scale == 0) { return "";// 不設(shè)置單位倍率單位,使用基準(zhǔn)單位 } String[] units = new String[] { "十", "百", "千", "萬", "十萬", "百萬", "千萬", "億", "十億", "百億", "千億", "兆" }; String[] units2 = new String[] { "十分", "百分", "千分", "萬分", "十萬分", "百萬分", "千萬分" }; double e = Math.log10(scale); int position = Double.valueOf(Math.ceil(e)).intValue(); if (position >= 1 && position <= units.length) { return units[position - 1]; } else if (position <= -1 && -position <= units2.length) { return units2[-position - 1]; } else { return "無量"; } } /** * 獲得浮點(diǎn)數(shù)的縮放比例 * * @param num * @return */ public static double scale(double num) { double absValue = Math.abs(num); // 無需縮放 if (absValue < 10000 && absValue >= 1) { return 1; } // 無需縮放 else if (absValue < 1 && absValue > 0.0001) { return 1; } else { return weight(num) / 10; } } /** * 獲得縮放后并且格式化的浮點(diǎn)數(shù) * * @param num * @param scale * @return */ public static double scaleNumber(double num, double scale) { DecimalFormat df = null; if (scale == 1) { df = new DecimalFormat("#.0000"); } else { df = new DecimalFormat("#.00"); } double scaledNum = num / scale; return Double.valueOf(df.format(scaledNum)); } /** * 產(chǎn)生n位隨機(jī)數(shù) TODO:性能不要,有待優(yōu)化 */ public static String ramdomNumber(int n) { if (n <= 0) { throw new IllegalArgumentException("n must be positive !"); } Random random = new Random(); StringBuilder result = new StringBuilder(); for (int i = 0; i < n; i++) { result.append(random.nextInt(10)); } return result.toString(); } /** * 縮放1W倍 */ public static double changeTo(double number) { boolean flag = false; if (number < 0) { flag = true; } double value = Math.abs(number); value = value / 10000.0; if (flag) { value = Double.parseDouble("-" + value); } return value; } /** * * 描述:縮放比例 * * @param number * @param scale * @param points * @return */ public static String scaleNumberToStr(double number, double scale, int points) { boolean flag = (number < 0); number = Math.abs(number); String result = ""; DecimalFormat nbf3 = (DecimalFormat) NumberFormat.getInstance();// 默認(rèn)格式 nbf3.setGroupingUsed(false); nbf3.setMinimumFractionDigits(points); nbf3.setMaximumFractionDigits(points); double scaledNum = number / scale; result = nbf3.format(scaledNum); if (flag) { result = "-" + result; } return result; } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。