5个回答
2014-04-09 · 知道合伙人数码行家
关注
展开全部
//方法一
public class Test {
public static void main(String[] args) {
byte a = 123;
char[] arr = String.valueOf(a).toCharArray();
for(int i = 0 ; i < arr.length; i++){
System.out.print(arr[i]+" ");
}
}
}
//方法二
public class Test {
public static void main(String[] args) {
byte a = 123;
String str = String.valueOf(a);
for(int i = 0; i< str.length(); i++){
System.out.print(str.substring(i, (i+1))+" ");
}
}
}
//方法三
public class Test {
public static void main(String[] args) {
byte a = 123;
Byte b = new Byte(a);
System.out.println(b.byteValue());
}
}
追问
没讲清楚,是把byte里面的2进制位输出,一共8位。
追答
Integer.parseInt(String.valueOf(b),要转换的进制);
展开全部
byte data = 127;
for (int i = 7; i >= 0; i--) {
System.out.print(data >> i & 1);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
/**
* 将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);
}
使用:
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));
* 将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);
}
使用:
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));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
byte[] cardNo = new byte[100];
String card = null;
for (int i = 0; i < cardNo.length; i++) {
if (cardNo[i] == 0) {
card = new String(cardNo, 0, i);
break;
}
}
String card = null;
for (int i = 0; i < cardNo.length; i++) {
if (cardNo[i] == 0) {
card = new String(cardNo, 0, i);
break;
}
}
追问
没讲清楚,是把byte里面的2进制位输出,一共8位。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
转成字符串
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询