java 如何将十六进制字符串转换为 float 符点型?相互转换

简介: java 如何将十六进制字符串转换为 float 符点型?先上代码:package com.weixiao.network;/** * java 如何将十六进制字符串转换为 float 符点型?相互转换 * Hex2Float * @author 微wx笑 * @date 2...

java 如何将十六进制字符串转换为 float 符点型?

先上代码:

package com.weixiao.network;
/**
 * java 如何将十六进制字符串转换为 float 符点型?相互转换
 * Hex2Float
 * @author 微wx笑
 * @date   2017年12月6日下午5:22:10
 */
public class Hex2Float {
	public static void main(String[] args) {

		String hexString = "46105cec";
		Long l = Hex2Float.parseLong(hexString, 16);
		Float f = Float.intBitsToFloat(l.intValue());

		System.out.println(hexString);
		System.out.println(l);
		System.out.println(f);
		System.out.println(Integer.toHexString(Float.floatToIntBits(f)));
		
		Integer i = Integer.parseInt(hexString, 16);
		f = Float.intBitsToFloat(i.intValue());
		System.out.println("");
		System.out.println(i);
		System.out.println(f);
		System.out.println(Integer.toHexString(Float.floatToIntBits(f)));
		
		hexString = "-c6105cec";
		l = Hex2Float.parseLong(hexString, 16);
		f = Float.intBitsToFloat(l.intValue());
		System.out.println("");
		System.out.println(hexString);
		System.out.println(l);
		System.out.println(f);
		System.out.println(Integer.toHexString(Float.floatToIntBits(f))); // 使用 Long 会输出:ffffffffc6105cec
		
		i = Integer.parseInt(hexString, 16); // 使用 Integer 会抛异常: java.lang.NumberFormatException: For input string: "c6105cec"
		f = Float.intBitsToFloat(i.intValue());
		System.out.println("");
		System.out.println(i);
		System.out.println(f);
		System.out.println(Integer.toHexString(Float.floatToIntBits(f)));
	}

	/**
	 * 代码来自:java.lang.Long
	 * 因为要跟踪看变量的值,所以要copy出来,或者是去附加源码,否则 eclipse 调试时查看变量的值会提示 xxx cannot be resolved to a variable
	 * @author 微wx笑
	 * @date   2017年12月6日下午5:19:40
	 * @param s
	 * @param radix
	 * @return
	 * @throws NumberFormatException
	 */
	public static long parseLong(String s, int radix) throws NumberFormatException {
		if (s == null) {
			throw new NumberFormatException("null");
		}

		if (radix < Character.MIN_RADIX) {
			throw new NumberFormatException("radix " + radix + " less than Character.MIN_RADIX");
		}
		if (radix > Character.MAX_RADIX) {
			throw new NumberFormatException("radix " + radix + " greater than Character.MAX_RADIX");
		}

		long result = 0;
		boolean negative = false;
		int i = 0, len = s.length();
		long limit = -Long.MAX_VALUE;
		long multmin;
		int digit;

		if (len > 0) {
			char firstChar = s.charAt(0);
			if (firstChar < '0') { // Possible leading "+" or "-"
				if (firstChar == '-') {
					negative = true;
					limit = Long.MIN_VALUE;
				} else if (firstChar != '+')
					throw NumberFormatException.forInputString(s);

				if (len == 1) // Cannot have lone "+" or "-"
					throw NumberFormatException.forInputString(s);
				i++;
			}
			multmin = limit / radix;
			while (i < len) {
				// Accumulating negatively avoids surprises near MAX_VALUE
				digit = Character.digit(s.charAt(i++), radix);
				if (digit < 0) {
					throw NumberFormatException.forInputString(s);
				}
				if (result < multmin) {
					throw NumberFormatException.forInputString(s);
				}
				result *= radix;
				if (result < limit + digit) {
					throw NumberFormatException.forInputString(s);
				}
				result -= digit;
			}
		} else {
			throw NumberFormatException.forInputString(s);
		}
		return negative ? result : -result;
	}
}

/**
 * 代码来自:java.lang.NumberFormatException
 * NumberFormatException
 * @author 微wx笑
 * @date   2017年12月6日下午5:20:36
 */
class NumberFormatException extends IllegalArgumentException {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public NumberFormatException(String s) {
		super(s);
	}

	static NumberFormatException forInputString(String s) {
		return new NumberFormatException("For input string: \"" + s + "\"");
	}
}
对应的输出如下:

46105cec
1175477484
9239.23
46105cec

1175477484
9239.23
46105cec

-c6105cec
-3322961132
4.5707135E-4
39efa314
Exception in thread "main" java.lang.NumberFormatException: For input string: "-c6105cec"
	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
	at java.lang.Integer.parseInt(Integer.java:583)
	at com.weixiao.network.Hex2Float.main(Hex2Float.java:36)
对,你没看错,上面的代码有会抛出异常的!

Why?

你注意到将十六进制字符串转换为 float,和将 float 转换为十六进制字符串 的区别了吗?

前面是用 Long,后面是用 Integer,为什么不用相同的类型呢?

后面的异常就是解释这个的。




目录
相关文章
|
19天前
|
SQL Java 索引
java小工具util系列2:字符串工具
java小工具util系列2:字符串工具
135 83
|
1月前
|
存储 安全 Java
Java零基础-字符串详解
【10月更文挑战第18天】Java零基础教学篇,手把手实践教学!
105 60
|
19天前
|
Java 数据库
java小工具util系列1:日期和字符串转换工具
java小工具util系列1:日期和字符串转换工具
51 26
|
23天前
|
存储 缓存 安全
java 中操作字符串都有哪些类,它们之间有什么区别
Java中操作字符串的类主要有String、StringBuilder和StringBuffer。String是不可变的,每次操作都会生成新对象;StringBuilder和StringBuffer都是可变的,但StringBuilder是非线程安全的,而StringBuffer是线程安全的,因此性能略低。
42 8
|
1月前
|
缓存 算法 Java
本文聚焦于Java内存管理与调优,介绍Java内存模型、内存泄漏检测与预防、高效字符串拼接、数据结构优化及垃圾回收机制
在现代软件开发中,性能优化至关重要。本文聚焦于Java内存管理与调优,介绍Java内存模型、内存泄漏检测与预防、高效字符串拼接、数据结构优化及垃圾回收机制。通过调整垃圾回收器参数、优化堆大小与布局、使用对象池和缓存技术,开发者可显著提升应用性能和稳定性。
47 6
|
2月前
|
Java 数据库
案例一:去掉数据库某列中的所有英文,利用java正则表达式去做,核心:去掉字符串中的英文
这篇文章介绍了如何使用Java正则表达式从数据库某列中去除所有英文字符。
56 15
|
2月前
|
Java
JAVA易错点详解(数据类型转换、字符串与运算符)
JAVA易错点详解(数据类型转换、字符串与运算符)
53 4
|
Java 算法
【Java学习笔记之四】java进制转化
十进制转成十六进制: Integer.toHexString(int i) 十进制转成八进制 Integer.toOctalString(int i) 十进制转成二进制 Integer.toBinaryString(int i) 十六进制转成十进制 Integer.
1029 0
|
3天前
|
安全 Java API
java如何请求接口然后终止某个线程
通过本文的介绍,您应该能够理解如何在Java中请求接口并根据返回结果终止某个线程。合理使用标志位或 `interrupt`方法可以确保线程的安全终止,而处理好网络请求中的各种异常情况,可以提高程序的稳定性和可靠性。
28 6
|
18天前
|
设计模式 Java 开发者
Java多线程编程的陷阱与解决方案####
本文深入探讨了Java多线程编程中常见的问题及其解决策略。通过分析竞态条件、死锁、活锁等典型场景,并结合代码示例和实用技巧,帮助开发者有效避免这些陷阱,提升并发程序的稳定性和性能。 ####