JDK里面有TimeUnit,看spark源码有个ByteUnit。这个类还是挺不错的。

public enum ByteUnit {
BYTE (1),
KiB (1024L),
MiB ((long) Math.pow(1024L, 2L)),
GiB ((long) Math.pow(1024L, 3L)),
TiB ((long) Math.pow(1024L, 4L)),
PiB ((long) Math.pow(1024L, 5L)); private ByteUnit(long multiplier) {
this.multiplier = multiplier;
} // Interpret the provided number (d) with suffix (u) as this unit type.
// E.g. KiB.interpret(1, MiB) interprets 1MiB as its KiB representation = 1024k
public long convertFrom(long d, ByteUnit u) {
return u.convertTo(d, this);
} // Convert the provided number (d) interpreted as this unit type to unit type (u).
public long convertTo(long d, ByteUnit u) {
if (multiplier > u.multiplier) {
long ratio = multiplier / u.multiplier;
if (Long.MAX_VALUE / ratio < d) {
throw new IllegalArgumentException("Conversion of " + d + " exceeds Long.MAX_VALUE in "
+ name() + ". Try a larger unit (e.g. MiB instead of KiB)");
}
return d * ratio;
} else {
// Perform operations in this order to avoid potential overflow
// when computing d * multiplier
return d / (u.multiplier / multiplier);
}
} public double toBytes(long d) {
if (d < 0) {
throw new IllegalArgumentException("Negative size value. Size must be positive: " + d);
}
return d * multiplier;
} public long toKiB(long d) { return convertTo(d, KiB); }
public long toMiB(long d) { return convertTo(d, MiB); }
public long toGiB(long d) { return convertTo(d, GiB); }
public long toTiB(long d) { return convertTo(d, TiB); }
public long toPiB(long d) { return convertTo(d, PiB); } private final long multiplier;
}

最新文章

  1. SQLIte Transaction
  2. ZeroMQ接口函数之 :zmq_inproc – &#216;MQ 本地进程内(线程间)传输方式
  3. Linux配置notes
  4. Construct Binary Tree from Preorder and Inorder Traversal
  5. HFS汉化版|简易HTTP服务器
  6. 关于promise(一)
  7. 转:SQL子句的执行顺序
  8. Android资源下载
  9. 【M12】了解“抛出一个exception”与“传递一个参数”或“调用一个虚函数”之间的差异
  10. DataTable相关操作,筛选,取前N条数据,获取指定列数据
  11. Linux性能分析工具top命令详解
  12. ubuntu安装最新的rails-4.2.0
  13. java -jar参数携带问题
  14. Kali学习笔记30:身份认证与命令执行漏洞
  15. PCM EQ DRC 音频处理
  16. java多线程之线程的同步与锁定(转)
  17. [No000014C]让大脑高效运转的24个技巧
  18. [daily] SNAT和DNAT
  19. anglar cli的 rxjs_1.of is not a function
  20. TensorRT caffemodel serialize

热门文章

  1. LG3195 [HNOI2008]玩具装箱TOY
  2. rpm 软件包离线安装
  3. .Net Remoting编程 ---- 系列文章
  4. Asp.Net构架(Http请求处理流程) - Part.1
  5. 一个kafka异常
  6. 遍历listmap 遍历map
  7. Oracle中的存储过程简单例子
  8. C语言中的printf函数的输入输出问题
  9. substr的学习(PHP学习)
  10. Spring 循环依赖