在文件中使用扫描仪时出现输入不匹配

InputMismatch when using Scanner in from file

提问人:Jesse Schultz 提问时间:10/26/2020 最后编辑:Jesse Schultz 更新时间:10/26/2020 访问量:27

问:

晚上好。我正在尝试从文件中读取双精度值并将它们放入双精度数组中。我解决这个问题的方法是使用扫描仪。

这是我的代码

public static void decryption(int n, int d) throws IOException
    {
        String encFile = getFile();
        String decFileName = getNewFile();
        
        //create save file for encrytped message
        File encFileSave = new File(decFileName);
        if(encFileSave.createNewFile())
        {
            System.out.println("Decrypted file created");
        }
        else
        {
            System.out.println("File already exists");
        }
                
        FileInputStream inS = new FileInputStream(encFile);
        //FileOutputStream outS = new FileOutputStream(decFileName);
        FileWriter outW = new FileWriter(decFileName);
        
        Scanner in = new Scanner(new File(encFile));
        int en = in.nextInt();
        double[] pmMess = new double[en];
        for(int i = 0; i < pmMess.length; i++)
        {
            pmMess[i] = in.nextDouble();
        }
        String dMess = decrypt(pmMess);
        
        outW.write(dMess);
    
        inS.close();
        outW.close();
        //end deccrypt
    }

我在该行收到错误“InputMismatchException”

int en = in.nextInt();

这是我第一次遇到这个特定的错误,到目前为止,文档已经说修复它的方法不是一开始就这样做。

我也尝试过FileInputStream,但没有成功。

输入如下

[373248.0, 1030301.0, 1259712.0, 1259712.0, 1367631.0, 32768.0, 658503.0, 1367631.0, 1481544.0, 1259712.0, 1000000.0, 97336.0, 2197.0, 1000.0, 474552.0, 1157625.0, 970299.0, 1030301.0, 32768.0, 314432.0, 912673.0, 1771561.0, 35937.0, 2197.0, 1000.0, 274625.0, 1331000.0, 32768.0, 274625.0, 32768.0, 1061208.0, 1367631.0, 1481544.0, 32768.0, 1560896.0, 1124864.0, 1030301.0, 32768.0, 970299.0, 1259712.0, 912673.0, 1520875.0, 1520875.0, 32768.0, 1685159.0, 1367631.0, 1601613.0, 1259712.0, 1000000.0, 32768.0, 941192.0, 1030301.0, 32768.0, 1331000.0, 1157625.0, 970299.0, 1030301.0, 97336.0, 32768.0, 32768.0, 32768.0, 195112.0, 68921.0, 91125.0]

最终起作用的修复程序

我获取了输入文件内容,并使用正则表达式基本上过滤掉了方括号和逗号。然后在遇到空格时做同样的事情去换行。

这是我用来做这件事的代码。

String bracOut;
while(bIn.ready())
{
    bracOut = bIn.readLine();
    String noBrac = bracOut.replaceAll("[,\\[\\]]", "");
    noBrac = noBrac.replaceAll(" ", "\n");
    byte[] noBracByte = noBrac.getBytes();
            
    outS.write(noBracByte);
    System.out.print(noBrac);
}

一旦我这样做了,我就能够逐行读取每个双精度值组并将它们放入双精度数组中。

java.util.scanner 输入MismatchException

评论

0赞 Konrad Rudolph 10/26/2020
您正在尝试从文件中读取整数。但是你的文件中没有整数——有 ,后跟浮点数,后跟 ,等等。"["","
0赞 GhostCat 10/26/2020
显然,您的文件内容与代码所需的布局不匹配。
0赞 GhostCat 10/26/2020
并且不相关:始终使用有意义的名称。“n”和“d”是相当不起眼的名字......
0赞 Jesse Schultz 10/26/2020
我使用“n”和“d”作为名称,以便进行分配指南。通常我会让它们更具描述性。
0赞 Jesse Schultz 10/26/2020
有没有办法将给定的输入读入双精度数组?

答:

0赞 Jesse Schultz 10/26/2020 #1

最终起作用的修复程序

我获取了输入文件内容,并使用正则表达式基本上过滤掉了方括号和逗号。然后在遇到空格时做同样的事情去换行。

这是我用来做这件事的代码。

String bracOut;
while(bIn.ready())
{
    bracOut = bIn.readLine();
    String noBrac = bracOut.replaceAll("[,\\[\\]]", "");
    noBrac = noBrac.replaceAll(" ", "\n");
    byte[] noBracByte = noBrac.getBytes();
            
    outS.write(noBracByte);
    System.out.print(noBrac);
}

一旦我这样做了,我就能够逐行读取每个双精度值组并将它们放入双精度数组中。