我用这个代码
short s = (short) Integer.parseInt("3321",16);
从
3321
转换为13089
如何进行逆运算并将
13089
转换为3321
? 最佳答案
Integer
提供一个method for this。
String out = Integer.toHexString(13089);
out
将具有值"3321"
。我用这个代码
short s = (short) Integer.parseInt("3321",16);
3321
转换为13089
13089
转换为3321
? 最佳答案
Integer
提供一个method for this。
String out = Integer.toHexString(13089);
out
将具有值"3321"
。