摘要: 1.16进制字符串转float浮点数 String str = "415C568C"; BigInteger b = new BigInteger(str, 16); float value = Float.intBitsToFloat(b.intValue()); System.out.print 阅读全文
posted @ 2022-04-14 11:37 coder小白 阅读(3680) 评论(0) 推荐(0)