码迷,mamicode.com
首页 > 其他好文 > 详细

boolean与byte的互转

时间:2014-08-16 23:43:41      阅读:481      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   ar   div   amp   log   

public static byte[] toBytes(boolean[] arrs){
        int f = 0;byte b = 0;
        byte[] ret = new byte[arrs.length/7 + (arrs.length%7==0?0:1)];
        for(int i=0; i<arrs.length; i+=8){
            for(int j=0; j<8; j++){
                if(i+j<arrs.length && arrs[i+j]){
                    b+= (1<<(7-j));
                }
                if(j==7){
                    ret[f++] = b;
                    b = 0;
                }
            }
        }
        return ret;
    }
    
    public static boolean[] toBoolean(byte[] bs, int length){
        boolean[] arrs = new boolean[8*bs.length];
        for(int i=0; i<bs.length; i++){
            int indx = i*8;
            byte b = bs[i];
            for(int j=7; j>=0; j--){
                arrs[indx + j] = (b&1)==1;
                b = (byte)(b>>1);
            }
        }
        return Arrays.copyOfRange(arrs, 0, length);
    }

 

boolean与byte的互转,布布扣,bubuko.com

boolean与byte的互转

标签:style   blog   color   for   ar   div   amp   log   

原文地址:http://www.cnblogs.com/inseptember/p/3917027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!