JAVA - 16进制转有符号数 小结
程序员文章站
2022-03-14 15:55:38
...
JAVA - 16进制转有符号数 小结
对于二进制不太熟悉,记录一下,防止忘记了;
public static void main(String[] args) {
System.out.println("有符号: "+String.valueOf((Integer.valueOf("afff",16).shortValue())/256-1));
}
outpoint:
有符号: -81
不记得之前写过没有了,另外两种转换的方法:
public static int byteToInt(byte b) {
return b & 0xFF;
}
public static int byteToInt(byte b0, byte b1) {
return (b1 & 0xFF) << 8 | b0 & 0xFF;
}
public static int byteToYfhInt(byte b0, byte b1) {
return (short) ((b1 & 0xFF) << 8 | b0 & 0xFF);
}
推荐阅读