我有这个字符串11110000
,它代表一个byte
.
我想byte
从该字符串创建一个,但我在网上找不到任何示例。
有人可以帮帮我吗?
int value = Integer.parseInt(s, 2); // 2 for binary
如果你想要字节类型:
byte value = Byte.parseByte(s, 2); // 2 for binary
采用
byte b = (byte) Integer.parseInt("11111",2);
byte myByte = (byte)Integer.parseInt("11110000", 2);