为什么无法使用java中的方法Integer.valueOf()解析从文本中读取的实际数字字符串?

为什么无法使用java中的方法Integer.valueOf()解析从文本中读取的实际数字字符串?

例外:

Exception in thread "main" java.lang.NumberFormatException: For input string: "11127"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    at java.lang.Integer.parseInt(Integer.java:580)
    at java.lang.Integer.valueOf(Integer.java:766)
    at sharingBike.ReadTxt.readRecord(ReadTxt.java:91)
    at sharingBike.ReadTxt.main(ReadTxt.java:17)

这是我的代码

        File fileView = new File(filePath);

        BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(fileView),"UTF-8"));

        String line;

        int count = 0;
        while ((line = in.readLine()) != null) {
            String[] lins = line.split(";");

            int value;
            value = Integer.valueOf(lins[0]);}
最佳答案
这是你的字符串的内容

System.out.println(Arrays.toString("11127".getBytes()));

哪个输出

[-17,-69,-65,49,50,55]

前三个字节是a UTF-8 BOM.

您可以通过首先从字符串中删除非数字来修复它(并使用parseInt返回int而不是Integer):

int value = Integer.parseInt(lins[0].replaceAll("\\D","");

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...