Integer.parseInt()遇到java.lang.NumberFormatException: For input string: "0" ,最终发现是编码问题。带有非法


start = Integer.parseInt(ss.trim());
cnt = Integer.valueOf(cc.trim());

java.lang.NumberFormatException: For input string: “0”

代码是从一个 txt文本读取一行 如 0,7 的拆分进行int转换,结果报错,百度了很久,调试看得到的 也是标准字符串“0” ,万万没有想到前面还有个非法字符。一眼看不出。

        List<String> lines = null;
        lines = FileUtils.readLines(new File("Log//22222.txt") );for (String line : lines) {
            int start = 0,cnt = 0;
            String ss=line.split(",")[0];
            String cc=line.split(",")[1];
            start = Integer.parseInt(ss.trim());//报错java.lang.NumberFormatException: For input string: "0"
            cnt = Integer.valueOf(cc.trim());
        }

调试看下方:读到的 “0,7”   的value前面还有个非法占位符 (在外面看不错有空格和什么占位符) 

Integer.parseInt()遇到java.lang.NumberFormatException: For input string: "0" ,最终发现是编码问题。带有非法

 

 用nodepad++ 看所有字符也看不出

Integer.parseInt()遇到java.lang.NumberFormatException: For input string: "0" ,最终发现是编码问题。带有非法

 

 最后 重新建立新的  txt 文档,再读取就没有 非法字符’/uFEFF’在前面了,

 

背景:本人原来的txt是由如下代码生成的,

FileUtils.writeStringToFile(new File("Log//22222.txt"),  "****/n", "utf-8", true);
保存的格式估计就不是 电脑手动生成的一样了。所以txt保存的时候也有多种格式,容易出问题。

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279488.html

(0)
上一篇 2022年8月8日
下一篇 2022年8月8日

相关推荐

发表回复

登录后才能评论