什么是规范方法将Short转换为十六进制字符串?
不可能使用Integer.toHexString(),因为Integer.toHexString(-33)等于ffffffdf这不是一个很短的值.
String hex = Integer.toHexString(-33 & 0xffff);