我用这个代码

short s = (short) Integer.parseInt("3321",16);


3321转换为13089

如何进行逆运算并将13089转换为3321

最佳答案

Integer提供一个method for this

String out = Integer.toHexString(13089);


out将具有值"3321"

09-04 10:05