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

问题描述 投票:5回答:1

为什么从文本中读取的实际数字字符串无法使用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]);}
java parsing
1个回答
12
投票

这是你的字符串的内容:

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

哪个输出:

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

前三个字节是a UTF-8 BOM

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

int value = Integer.parseInt(lins[0].replaceAll("\\D", "");
© www.soinside.com 2019 - 2024. All rights reserved.