Java 十进制转十六进制

1、

/**
* All possible chars for representing a number as a String
*/
final static char[] digits = { '0', '1', '2', '3', '4', '5', '6', '7', '8',
'9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y',
'z' };

 

public static String toHexString(int i) {

return toUnsignedString(i, 4);
}

 

/**
* Convert the integer to an unsigned number.
*/
private static String toUnsignedString(int i, int shift) {

char[] buf = new char[32];// 声明一个Int值长度的字符数组
int charPos = 32;
// 得到每位都是1的二进制数
int radix = 1 << shift;
int mask = radix - 1;
do {
buf[--charPos] = digits[i & mask];// 将i值的当前最低shift位的值赋值给声明的字符数组的前一位
i >>>= shift;// i右移shift位并赋值
}
while (i != 0);

return new String(buf, charPos, (32 - charPos));
}

2、

public static String decimalToHex(int decimal) {

String hex = "";
while (decimal != 0) {
int hexValue = decimal % 16;
hex = toHexChar(hexValue) + hex;
decimal = decimal / 16;
}
return hex;
}

public static char toHexChar(int hexValue) {

if (hexValue <= 9 && hexValue >= 0) {
return (char) (hexValue + '0');
}
else {// (hexValue <= 15 && hexValue >= 10)
return (char) (hexValue - 10 + 'A');
}
}

转载于:https://www.cnblogs.com/diyishijian/p/4992648.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值