Short toHexString

后端 未结 5 1653
别那么骄傲
别那么骄傲 2021-02-19 14:54

There are methods Integer.toHexString() and Long.toHexString(). For some reason they didn\'t implement Short.toHexString().

What

5条回答
  •  醉话见心
    2021-02-19 15:36

    If in your system short is represented as 16Bit you can also simply do the following.

    String hex = Integer.toHexString(-33 & 0xffff);
    

提交回复
热议问题