Java - 从txt文件中读取数字并将其写入2d数组

时间:2013-09-14 00:43:58

标签: java arrays

我的目标是从txt文件中读取数据,并将它们放入二维数组中。我的代码给我的问题是:

    Scanner input = new Scanner(new FileReader(file));

    //save the number of vertex's
    vCount = input.nextInt();

    //create a 2d array
    Integer[][] adjList = new Integer[vCount][vCount];

    String line;
    String [] arrLn;

    for (int i = 0; i < vCount; i++) {

        line = input.nextLine(); //the value of 'line' never changes
        arrLn = line.split(" ");

        for (int j = 0; j < vCount; j++) {
            adjList[i][j] = Integer.parseInt(arrLn[j]); //errors list problem is here
        }
    }

示例txt文件是这样的:

5
1 2 3 4
2 3
3 1 2
4 1 4
5 2 4

第一行是椎骨的数量,其余行是要插入数组的数据。需要插入它们,以便txt文件中的每一行都保留在数组中自己的行中(即:数组第1行中的元素不能等于'1,2,3,4,2,3',而是'1, 2,3,4' 。

我不能为我的生活理解为什么行变量实际上没有读取该行。我在代码中没有错误,就在我运行时。

收到错误:

run:
Enter the File Name
C:\Users\YAZAN\Desktop\test.txt
Exception in thread "main" java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    at java.lang.Integer.parseInt(Integer.java:504)
at java.lang.Integer.parseInt(Integer.java:527)
at dbsearchs.Graph.runBFS(Graph.java:38)
at dbsearchs.Driver.main(Driver.java:24)
Java Result: 1
BUILD SUCCESSFUL (total time: 26 seconds)

1 个答案:

答案 0 :(得分:2)

首先,您确定line的值永远不会改变吗?

其次,可能存在问题,因为您先调用input.nextInt()然后调用input.nextLine()。尝试执行input.nextLine()而不是nextInt(),并从该行获取您的号码。目前,你第一次调用input.nextLine()很可能会给你第一行的内容 - 什么都没有。

第三,我相信一旦运行程序修复了NumberFormatException,你将得到一个ArrayIndexOutOfBounds异常。在你的第二个循环中,不要循环直到vCount,而是循环直到arrLn.length。