读取tsv文件时出现空指针异常

时间:2013-09-09 15:11:35

标签: java nullpointerexception

嗨,任何人都可以帮我下面的代码。为什么这会抛出空指针异常以及如何避免它。 我正在尝试读取tsv文件和csv文件并使用它进行一些处理。 当我调用getDictionaryValues函数时,它抛出空指针异常。

package com.ugam.qa.tittle;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class TittleMatch {
private static TittleMatchUtil tMU;
public static void main(String[] args) {
    String fullname="d:/files/listing/Headphones.tsv";
    Set<String> attributeSet=new HashSet<String>();
    attributeSet.add("Storage Type");
    attributeSet.add("Recording Definition");
    attributeSet.add("Type");
    attributeSet.add("Brand");
    BufferedReader in = null;
    try 
    {
        System.out.println("file found");
        in= new BufferedReader(new FileReader(fullname));
    } catch (FileNotFoundException e1) {
        e1.printStackTrace();


    }
    String str;
    String prv_Pid="-1";
    try {
        str =  in.readLine();
        while ((str =  in.readLine()) != null) {

            if (str.trim().length() == 0 ) {
                System.out.println("while loop");
                continue;}

            String[] values = str.split("\\t");
            //System.out.println(values.length);
            if(prv_Pid=="-1" || values[9]==prv_Pid)
            {
                if(attributeSet.contains(values[12]))
                {
                    ArrayList<Set<String>> dicValues=new ArrayList<Set<String>>();
                    if(values[12]!=null && values[13]!=null)
                    {
                        dicValues=tMU.getDictionaryValues(values[12],values[13]);
                    }
                    //Set<String> tittle=new HashSet<String>();
                    //tittle.add(values[8]);
                    //System.out.println(tittle);

                }
            }

        }


    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

}

}

1 个答案:

答案 0 :(得分:2)

显然,此变量的计算结果为null,因为您从未为其赋值。

private static TittleMatchUtil tMU;

一种解决方案是将新的TittleMatchUtil对象分配给变量:

private static TittleMatchUtil tMU = new TittleMatchUtil();

另一个是制作getDictionaryValues()方法static,我不会这样做,因为它可能需要更多的代码重新分解。