背景 在对Double类型的数据进行计算操作,将结果转化为BigDecimal时抛出了下面的异常,进行了Debug才发现了问题原因,同时也暴露出了自己在一些基础知识上还有些欠缺. Exception in thread "main" java.lang.NumberFormatException: Infinite or NaN at java.math.BigDecimal.<init>(BigDecimal.java:895) at java.math.BigDecim…
  1.异常提示: java.lang.NumberFormatException: Infinite or NaN 2.原因:无法格式化的数字,此数字要么不是个数字,要么是无穷大的数字,从而导致 BigDecimal 无法对其解析. 3.解决办法:检查传入到 BigDecimal 的参数是不是数字,或者数字中含有空格.…
原文链接:https://blog.csdn.net/weixin_43724369/article/details/89341949 SpringBoot整合Swagger2案例 先说SpringBoot如何整合Swagger2,然后再说报错问题. 用IDEA新建SpringBoot项目,只需勾选Web即可. 在项目的pom文件中添加Swagger2相关依赖 <!--引入两个Swagger2相关的依赖--> <dependency> <groupId>io.sprin…
错误: java.lang.NumberFormatException: For input string: "1608020001 "    at java.lang.NumberFormatException.forInputString(Unknown Source)    at java.lang.Integer.parseInt(Unknown Source)    at java.lang.Integer.parseInt(Unknown Source)    at cn.…
nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database.  Cause: java.lang.NumberFormatException: For input string: "Y"### Cause: java.lang.NumberFormatException: For input string: "Y"org.myba…
mybatis的if标签之前总是使用是否为空,今天要用到字符串比较的时候遇到了困难,倒腾半天,才在一个论坛上找到解决方法.笔记一下,如下: 转自:https://code.google.com/p/mybatis/issues/detail?id=262 错误描述: <select id="sltTreatment" resultType="com.vitaminmd.sunny.core.bo.Treatment"> select * from tre…
1.错误描述 Exception in thread "main" java.lang.NumberFormatException: For input string: "61.13226212525146" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:492) a…
<select id="sltTreatment" resultType="com.vitaminmd.sunny.core.bo.Treatment"> select * from treatment where TRUE <if test="index == 'A'"> AND ensubject IS NOT NULL AND ensubject <> '' </if> </select…
原因一:超出了int类型的取值范围 项目中要把十六进制字符串转化为十进制, 用到了到了Integer.parseInt(str1.trim(), 16):这个是不是后抛出java.lang.NumberFormatException异常,让老子看了半天! 后来发现是超出了int类型的取值范围,要用 BigInteger big = new BigInteger(str1.trim(),16);代替即可!!! 原因二:字符串类型不对. String numString = "1  ";…
问题:Caused by: java.lang.NumberFormatException: For input string: "18446744073709551615" 原因:18446744073709551615  --有20位, 而long类型的最大长度是: 19位:9223372036854775807 long类型的最大值是9223372036854775807,刚好长度是19个数字 解决: 1.类型换成 float, float的最大值为3.403E38, 也就是3.…