获取byte的各个bit值_获取一个 Byte 的各个 Bit 值(转)

package com.test;

import java.util.Arrays;

public class T {

/**

* 将byte转换为一个长度为8的byte数组,数组每个值代表bit

*/

public static byte[] getBooleanArray(byte b) {

byte[] array = new byte[8];

for (int i = 7; i >= 0; i--) {

array[i] = (byte)(b & 1);

b = (byte) (b >> 1);

}

return array;

}

/**

* 把byte转为字符串的bit

*/

public static String byteToBit(byte b) {

return ""

+ (byte) ((b >> 7) & 0x1) + (byte) ((b >> 6) & 0x1)

+ (byte) ((b >> 5) & 0x1) + (byte) ((b >> 4) & 0x1)

+ (byte) ((b >> 3) & 0x1) + (byte) ((b >> 2) & 0x1)

+ (byte) ((b >> 1) & 0x1) + (byte) ((b >> 0) & 0x1);

}

public static void main(String[] args) {

byte b = 0x35; // 0011 0101

// 输出 [0, 0, 1, 1, 0, 1, 0, 1]

System.out.println(Arrays.toString(getBooleanArray(b)));

// 输出 00110101

System.out.println(byteToBit(b));

// JDK自带的方法,会忽略前面的 0

System.out.println(Integer.toBinaryString(0x35));

}

}

输出内容就是各个 bit 位的 0 和 1 值!

根据各个Bit的值,返回byte的代码:

/**

* 二进制字符串转byte

*/

public static byte decodeBinaryString(String byteStr) {

int re, len;

if (null == byteStr) {

return 0;

}

len = byteStr.length();

if (len != 4 && len != 8) {

return 0;

}

if (len == 8) {// 8 bit处理

if (byteStr.charAt(0) == '0') {// 正数

re = Integer.parseInt(byteStr, 2);

} else {// 负数

re = Integer.parseInt(byteStr, 2) - 256;

}

} else {// 4 bit处理

re = Integer.parseInt(byteStr, 2);

}

return (byte) re;

}

分享到:

2014-03-26 14:03

浏览 1641

评论

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值