📅  最后修改于: 2020-10-09 00:50:19             🧑  作者: Mango
我们可以使用Integer.toHexString()方法或自定义逻辑在Java中将十进制转换为十六进制。
Integer.toHexString()方法将十进制转换为十六进制。 toHexString()方法的签名如下:
public static String toHexString(int decimal)
让我们看一下在Java中将十进制转换为二进制的简单示例。
public class DecimalToHexExample1{
public static void main(String args[]){
System.out.println(Integer.toHexString(10));
System.out.println(Integer.toHexString(15));
System.out.println(Integer.toHexString(289));
}}
输出:
a
f
121
我们可以使用自定义逻辑在Java中将十进制转换为十六进制。
public class DecimalToHexExample2{
public static String toHex(int decimal){
int rem;
String hex="";
char hexchars[]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
while(decimal>0)
{
rem=decimal%16;
hex=hexchars[rem]+hex;
decimal=decimal/16;
}
return hex;
}
public static void main(String args[]){
System.out.println("Hexadecimal of 10 is: "+toHex(10));
System.out.println("Hexadecimal of 15 is: "+toHex(15));
System.out.println("Hexadecimal of 289 is: "+toHex(289));
}}
输出:
Hexadecimal of 10 is: A
Hexadecimal of 15 is: F
Hexadecimal of 289 is: 121