NumberUtils.java

时间:2023-08-11 11:34:33
【文件属性】:
文件名称:NumberUtils.java
文件大小:605B
文件格式:JAVA
更新时间:2023-08-11 11:34:33
数字转换 public static String getPercentile(long small, long big) { if (big == 0) { return "0.00%"; } double percent = (double) small / big; DecimalFormat format = new DecimalFormat("0.00%"); String result = format.format(percent); return result; }

网友评论