空指针异常

时间:2015-11-08 10:36:10

标签: java nullpointerexception

有人能告诉我为什么以下代码中存在NullPointerException?我试图解决这个问题,但是不能!

例外情况如下:

companies[x].compName=temp1[0];

公司阵列类型是包含字符串和数组列表的公司。

JFileChooser  fileChooser = new JFileChooser();                             // create instence from file chooser 
fileChooser.setCurrentDirectory(new File(System.getProperty("user.home"))); //assign directory

if(fileChooser.showOpenDialog(null)==JFileChooser.APPROVE_OPTION){
    File f = fileChooser.getSelectedFile();
    try{

        LineNumberReader  lnr = new LineNumberReader(new FileReader(f)); 
        lnr.skip(Long.MAX_VALUE);
        int n = lnr.getLineNumber() +1;

        lnr.close();
        companies = new Company[n];
        int i=0 , x=0;
        String s ="";
        Scanner input = new Scanner(f);
        String  [] temp1,temp2;
        while(input.hasNext()){     // read line by line 

            s = input.nextLine();
            s=s.replaceAll(" ", "");
            if(s == null)
            continue;
            else{

                temp1 =s.split(",");
                companies[x].compName=temp1[0];           //store compName in the companies
                for( i=1;i<temp1.length;i++){


                    temp2=temp1[i].split("/");
                    companies[n].compItems.addLast(temp2[0], Integer.parseInt(temp2[1]));

                }  //end for
            }   //end else
            x++;
        }  //end while 

1 个答案:

答案 0 :(得分:1)

请参阅我的评论 - 公司[x]从未被初始化为公司()。初始化数组是不够的 - 它中的每个项目也需要分配。

您可能更适合使用List,因为用于初始化阵列的行数可能不是公司的数量(某些行被跳过)

while(input.hasNext()){     // read line by line 

        s = input.nextLine();
        s=s.replaceAll(" ", "");
        if(s == null)
        continue;
        else{

            temp1 =s.split(",");
            //companies[x] is still null - initialize this!
            companies[x] = new Company();
            //Now this should be fine
            companies[x].compName=temp1[0];           //store compName in the companies
            for( i=1;i<temp1.length;i++){