数组上的空指针异常

时间:2014-07-10 21:23:41

标签: java

public static void main(String[] args) throws IOException{

    String[] token = null;
    int i, n = 0;
    int lineCounter = 0;

    Scanner file1 = new Scanner(new File(args[0]));

    int[] lineNumber = new int[lineCounter];

    for(i=0; i<lineCounter; i++) {
        lineNumber[i] = n++;
    }

    String[] word = new String[lineCounter];
    file1 = new Scanner(new File(args[0]));

    while(file1.hasNextLine()) {
        i++;
        token[i] = file1.nextLine();

我一直在尝试运行代码,但它一直给我一个空指针异常。有什么建议可以解决这个问题吗?

令牌引用名为file1的文件中的随机单词。

0 个答案:

没有答案