Byte和Bit之间的转换_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Byte和Bit之间的转换

Byte和Bit之间的转换

 2013/7/19 22:56:52  cuisuqiang  程序员俱乐部  我要评论(0)
  • 摘要://返回无符号的2进制表示1110011Stringhex=Integer.toBinaryString(115);System.out.println(hex);//返回2进制的字符串1110011对应的值115System.out.println(Integer.valueOf("1110011",2));//16进制值转换成二进制System.out.println(Long.parseLong("49",16));System.out.println(Long.parseLong
  • 标签:
class="java">// 返回无符号的2进制表示 1110011
String hex = Integer.toBinaryString(115);
System.out.println(hex);
// 返回2进制的字符串1110011对应的值 115
System.out.println(Integer.valueOf("1110011", 2));

// 16进制值转换成二进制
System.out.println(Long.parseLong("49", 16));
System.out.println(Long.parseLong("2F", 16));

?

/**
 * 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);
}

/**
 * Bit转Byte
 */
public static byte BitToByte(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;
}

?

  • 相关文章
发表评论
用户名: 匿名