硬盘大小转换(B,KB,MB,GB,TB,PB之间的大小转换) 的Java工具类

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
java程序员在实际的开发中会遇到很多的单位换算问题。今天我给大家带来的是关于计算机硬盘大小的换算。多数情况下,一般要求 b,kb,mb,gb,tb,pb之间的大小转换,我们都知道他们之间的换算是乘以1024或者除以1024。但是具体怎么用java代码来实现呢?请看 下面的代码:
    package com.herman.utils;  
      
    /*** 
     * @see 存储大小(单位)转换器. 
     * @author Herman.Xiong 
     * @date 2014年5月27日 13:27:40 
     * @version V1.0 
     */  
    public enum SizeConverter {  
        /** 转换任意单位的大小, 返回结果会包含两位小数但不包含单位. */  
        Arbitrary {  
            @Override  
            public String convert(float size) {  
                while (size > 1024) {  
                    size /= 1024;  
                }  
                return String.format(FORMAT_F, size);  
            }  
        },  
          
        // -----------------------------------------------------------------------  
        // 有单位  
        /** 转换单位为B的大小, 返回结果会包含两位小数以及单位. 如: 1024B->1KB, (1024*1024)B->1MB */  
        B {  
            @Override  
            public String convert(float B) {  
                return converter(0, B);  
            }  
        },  
        /** 转换单位为B的大小, 返回结果会包含两位小数以及单位. */  
        KB {  
            @Override  
            public String convert(float KB) {  
                return converter(1, KB);  
            }  
        },  
        /** 转换单位为MB的大小, 返回结果会包含两位小数以及单位. */  
        MB {  
            @Override  
            public String convert(float MB) {  
                return converter(2, MB);  
            }  
        },  
        /** 转换单位为GB的大小, 返回结果会包含两位小数以及单位. */  
        GB {  
            @Override  
            public String convert(float GB) {  
                return converter(3, GB);  
            }  
        },  
        /** 转换单位为TB的大小, 返回结果会包含两位小数以及单位. */  
        TB {  
            @Override  
            public String convert(float TB) {  
                return converter(4, TB);  
            }  
        },  
          
        // -----------------------------------------------------------------------  
        // trim没单位  
        /** 转换任意单位的大小, 返回结果小数部分为0时将去除两位小数, 不包含单位. */  
        ArbitraryTrim {  
            @Override  
            public String convert(float size) {  
                while (size > 1024) {  
                    size /= 1024;  
                }  
      
                int sizeInt = (int) size;  
                boolean isfloat = size - sizeInt > 0.0F;  
                if (isfloat) {  
                    return String.format(FORMAT_F, size);  
                }  
                return String.format(FORMAT_D, sizeInt);  
            }  
        },  
          
        // -----------------------------------------------------------------------  
        // trim有单位  
        /** 转换单位为B的大小, 返回结果小数部分为0时将去除两位小数, 会包含单位. */  
        BTrim {  
            @Override  
            public String convert(float B) {  
                return trimConverter(0, B);  
            }  
        },  
        /** 转换单位为KB的大小, 返回结果小数部分为0时将去除两位小数, 会包含单位. */  
        KBTrim {  
            @Override  
            public String convert(float KB) {  
                return trimConverter(1, KB);  
            }  
        },  
        /** 转换单位为MB的大小, 返回结果小数部分为0时将去除两位小数, 会包含单位. */  
        MBTrim {  
            @Override  
            public String convert(float MB) {  
                return trimConverter(2, MB);  
            }  
        },  
        /** 转换单位为GB的大小, 返回结果小数部分为0时将去除两位小数, 会包含单位. */  
        GBTrim {  
            @Override  
            public String convert(float GB) {  
                return trimConverter(3, GB);  
            }  
        },  
        /** 转换单位为TB的大小, 返回结果小数部分为0时将去除两位小数, 会包含单位. */  
        TBTrim {  
            @Override  
            public String convert(float TB) {  
                return trimConverter(4, TB);  
            }  
        };  
        /*** 
         * <p> 将指定的大小转换到1024范围内的大小. 注意该方法的最大单位为PB, 最小单位为B,  
         * 任何超出该范围的单位最终会显示为**. </p> 
         *  
         * @param size 要转换的大小, 注意是浮点数, 不要以整形的方式传入, 容易造成溢出. 
         *         (如: 1024*1024*1024*1024*1024会溢出, 使结果为0, 因为它先将结果以int相乘后再转换为float;  
         *         而1024.0F*1024.0F*1024.0F*1024.0F*1024.0F就不会溢出) 
         * @return 
         */  
        abstract public String convert(float size);  
          
        // -----------------------------------------------------------------------  
        // 单位转换  
          
        private static final String[] UNITS = new String[] {  
            "B", "KB", "MB", "GB", "TB", "PB", "**"  
        };  
          
        private static final int LAST_IDX = UNITS.length-1;  
          
        private static final String FORMAT_F = "%1$-1.2f";  
        private static final String FORMAT_F_UNIT = "%1$-1.2f%2$s";  
          
        private static final String FORMAT_D = "%1$-1d";  
        private static final String FORMAT_D_UNIT = "%1$-1d%2$s";  
          
        // -----------------------------------------------------------------------  
        private static String converter(int unit, float size) {  
            int unitIdx = unit;  
            while (size > 1024) {  
                unitIdx++;  
                size /= 1024;  
            }  
            int idx = unitIdx < LAST_IDX ? unitIdx : LAST_IDX;  
            return String.format(FORMAT_F_UNIT, size, UNITS[idx]);  
        }  
          
        private static String trimConverter(int unit, float size) {  
            int unitIdx = unit;  
            while (size > 1024) {  
                unitIdx++;  
                size /= 1024;  
            }  
      
            int sizeInt = (int) size;  
            boolean isfloat = size - sizeInt > 0.0F;  
            int idx = unitIdx < LAST_IDX ? unitIdx : LAST_IDX;  
            if (isfloat) {  
                return String.format(FORMAT_F_UNIT, size, UNITS[idx]);  
            }  
            return String.format(FORMAT_D_UNIT, sizeInt, UNITS[idx]);  
        }  
          
        // -----------------------------------------------------------------------  
        public static String convertBytes(float B, boolean trim) {  
            return trim ? trimConvert(0, B, true) : convert(0, B, true);  
        }  
          
        public static String convertKB(float KB, boolean trim) {  
            return trim ? trimConvert(1, KB, true) : convert(1, KB, true);  
        }  
          
        public static String convertMB(float MB, boolean trim) {  
            return trim ? trimConvert(2, MB, true) : convert(2, MB, true);  
        }  
          
        /*** 
         * <p> 存储大小单位间的转换. 注意该方法的最大单位为PB, 最小单位为B,  
         * 任何超出该范围的单位最终会显示为**. </p> 
         *  
         * @param unit 从哪个单位开始 
         * @param size 存储大小, 注意是float, 不要以整形的形式传入, 否则会溢出(如:1024*1024这种, 
         * 它是先将1024*1024作为int相乘再转换为float的, 如果值过大的话就会溢出了,  
         * 所以这么写1024.0F*1024.0F) 
         * @param withUnit 返回的结果字符串是否带有对应的单位 
         * @return 
         */  
        private static String convert(int unit, float size, boolean withUnit) {  
            int unitIdx = unit;  
            while (size > 1024) {  
                unitIdx++;  
                size /= 1024;  
            }  
            if (withUnit) {  
                int idx = unitIdx < LAST_IDX ? unitIdx : LAST_IDX;  
                return String.format(FORMAT_F_UNIT, size, UNITS[idx]);  
            }  
            return String.format(FORMAT_F, size);  
        }  
          
        /*** 
         * <p> 存储大小单位间的转换, 如果转换后小数部分为0, 则去除小数部分.  
         * 注意该方法的最大单位为PB, 最小单位为B, 任何超出该范围的单位最终会显示为**. </p> 
         *  
         * @param unit 从哪个单位开始 
         * @param size 存储大小, 注意是float, 不要以整形的形式传入, 否则会溢出(如:1024*1024这种, 
         * 它是先将1024*1024作为int相乘再转换为float的, 如果值过大的话就会溢出了,  
         * 所以这么写1024.0F*1024.0F) 
         * @param withUnit 返回的结果字符串是否带有对应的单位 
         * @return 
         */  
        private static String trimConvert(int unit, float size, boolean withUnit) {  
            int unitIdx = unit;  
            while (size > 1024) {  
                unitIdx++;  
                size /= 1024;  
            }  
      
            int sizeInt = (int) size;  
            boolean isfloat = size - sizeInt > 0.0F;  
            if (withUnit) {  
                int idx = unitIdx < LAST_IDX ? unitIdx : LAST_IDX;  
                if (isfloat) {  
                    return String.format(FORMAT_F_UNIT, size, UNITS[idx]);  
                }  
                return String.format(FORMAT_D_UNIT, sizeInt, UNITS[idx]);  
            }  
      
            if (isfloat) {  
                return String.format(FORMAT_F, size);  
            }  
            return String.format(FORMAT_D, sizeInt);  
        }  
    }  

工具类代码写好了,我们来看一个测试类吧,上代码:
    package com.herman.test;  
      
    import com.herman.utils.SizeConverter;  
    /** 
     * @see 硬盘大小换算测试类 
     * @author Herman.Xiong 
     * @date 2014年5月27日 13:43:33 
     */  
    public class SizeConverterTest {  
        public static void main(String[] args) {  
            System.out.println(SizeConverter.MBTrim.convert(419562f));  
        }  
    }  
来自:http://blog.csdn.net/xmtblog/article/details/27194021

标签: 代码

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:NSfileManager的使用方法

下一篇:Android旋转动画xml配置