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的文件中的随机单词。