在Java中将十进制整数转换为十六进制数
要将十进制整数转换为十六进制,请使用Integer.toHexString()方法。假设以下是我们的十进制整数。
int decInt = 25;
以下是Integer.toHexString()方法将十进制整数转换为十六进制数字的用法。
String myHex = Integer.toHexString(decInt);
以下是完整的示例。
示例
public class Demo {public static void main(String []args) {
int decInt = 25;
System.out.println("Decimal Integer = "+decInt);
String myHex = Integer.toHexString(decInt);
System.out.println("Hexadecimal = "+myHex);
}
}
输出结果
Decimal Integer = 25Hexadecimal = 19
以上是 在Java中将十进制整数转换为十六进制数 的全部内容, 来源链接: utcz.com/z/335089.html