Class DataSize

java.lang.Object
org.miaixz.bus.core.io.unit.DataSize
All Implemented Interfaces:
Comparable<DataSize>

public final class DataSize extends Object implements Comparable<DataSize>
数据大小,可以将类似于'12MB'表示转换为bytes长度的数字 此类来自于:Spring-framework
     byte        1B     1
     kilobyte    1KB    1,024
     megabyte    1MB    1,048,576
     gigabyte    1GB    1,073,741,824
     terabyte    1TB    1,099,511,627,776
 
Since:
Java 17+
Author:
Kimi Liu