如何将 java 中的十进制值转换为十六进制值?
How to convert Decimal Value to hexadecimal in java?
如何在 java 中将十进制值(温度)转换为 16 位十六进制?
输入:-54.9
预期结果:0x8225
我有反向代码,我将 16 字节十六进制转换为十进制值(温度)。
private static double hexDataToTemperature(String tempHexData) {
String tempMSBstr = tempHexData.substring(0, 2);
String tempLSBstr = tempHexData.substring(2, 4);
int tempMSB = Integer.parseInt(tempMSBstr, 16);
int tempLSB = Integer.parseInt(tempLSBstr, 16);
int sign = 1;
if (tempMSB >= 128) {
tempMSB = tempMSB - 128;
sign = -1;
}
Float f = (float) (sign * ((float) ((tempMSB * 256) + tempLSB) / 10));
return Double.parseDouble("" + f);
}
从这段代码中尝试想法“请注意 toHexString()”
import java.util.Scanner;
class DecimalToHex
{
public static void main(String args[])
{
Scanner input = new Scanner( System.in );
System.out.print(" decimal number : ");
int num =input.nextInt();
// calling method toHexString()
String str = Integer.toHexString(num);
System.out.println("Decimal to hexadecimal: "+str);
}
}
以十六进制表示的有符号短值(16 位)表示温度的十分之一度:
static String toHex( float t ){
short it = (short)Math.round(t*10);
return String.format( "%04x", it );
}
如果需要,您可以将“0x”添加到格式字符串中。 - 反向转换:
static float toDec( String s ){
int it = Integer.parseInt( s, 16 );
if( it > 32767 ) it -= 65536;
return it/10.0F;
}
这表示二进制补码中的整数,因此 -54.9 的结果不是 0x8225 而是 0xfddb。使用最高有效位作为符号位并在剩余的 15 位 ("signed magnitude") 中表示绝对值是非常不寻常的,尤其是对于 Java.
如果您确实想使用带符号的幅度:
static String toHex( float t ){
int sign = 0;
if( t < 0 ){
sign = 0x8000;
t = -t;
}
short it = (short)(Math.round(t*10) + sign);
return String.format( "%04x", it );
}
static float toDec( String s ){
int it = Integer.parseInt( s, 16 );
if( it > 32767 ){
it = -(it - 0x8000);
}
return it/10.0F;
}
如何在 java 中将十进制值(温度)转换为 16 位十六进制?
输入:-54.9
预期结果:0x8225
我有反向代码,我将 16 字节十六进制转换为十进制值(温度)。
private static double hexDataToTemperature(String tempHexData) {
String tempMSBstr = tempHexData.substring(0, 2);
String tempLSBstr = tempHexData.substring(2, 4);
int tempMSB = Integer.parseInt(tempMSBstr, 16);
int tempLSB = Integer.parseInt(tempLSBstr, 16);
int sign = 1;
if (tempMSB >= 128) {
tempMSB = tempMSB - 128;
sign = -1;
}
Float f = (float) (sign * ((float) ((tempMSB * 256) + tempLSB) / 10));
return Double.parseDouble("" + f);
}
从这段代码中尝试想法“请注意 toHexString()”
import java.util.Scanner;
class DecimalToHex
{
public static void main(String args[])
{
Scanner input = new Scanner( System.in );
System.out.print(" decimal number : ");
int num =input.nextInt();
// calling method toHexString()
String str = Integer.toHexString(num);
System.out.println("Decimal to hexadecimal: "+str);
}
}
以十六进制表示的有符号短值(16 位)表示温度的十分之一度:
static String toHex( float t ){
short it = (short)Math.round(t*10);
return String.format( "%04x", it );
}
如果需要,您可以将“0x”添加到格式字符串中。 - 反向转换:
static float toDec( String s ){
int it = Integer.parseInt( s, 16 );
if( it > 32767 ) it -= 65536;
return it/10.0F;
}
这表示二进制补码中的整数,因此 -54.9 的结果不是 0x8225 而是 0xfddb。使用最高有效位作为符号位并在剩余的 15 位 ("signed magnitude") 中表示绝对值是非常不寻常的,尤其是对于 Java.
如果您确实想使用带符号的幅度:
static String toHex( float t ){
int sign = 0;
if( t < 0 ){
sign = 0x8000;
t = -t;
}
short it = (short)(Math.round(t*10) + sign);
return String.format( "%04x", it );
}
static float toDec( String s ){
int it = Integer.parseInt( s, 16 );
if( it > 32767 ){
it = -(it - 0x8000);
}
return it/10.0F;
}