如何将BBM bin转换为DeviceId

时间:2012-04-18 17:03:47

标签: java blackberry java-me

我使用此行将bin从成员转换为数字和字符

String bin=Integer.toString(Integer.parseInt(DeviceInfo.getDeviceId(),16))

现在如何将bin再次转换为DeviceId(仅限数字)

1 个答案:

答案 0 :(得分:2)

我想你想要反过来:

String rev=Integer.toHexString(Integer.parseInt(bin));

例如,这段代码:

String bin=Integer.toString(Integer.parseInt("12345678",16));
String rev=Integer.toHexString(Integer.parseInt(bin));
System.out.println(bin);
System.out.println(rev);

输出:

305419896
12345678