string to hex value

前端 未结 4 2107
粉色の甜心
粉色の甜心 2021-01-05 18:53

Is there any java utility to convert string to hex value (integer) ?

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-05 19:23

    When you have a string starting with 0x or #

    Integer.decode(hexStr);
    

    is the goal

    Or

    Integer.parseInt(hexString, 16);
    

提交回复
热议问题