public String[] getKey(String aFilePathONE){
     String[] Tempsuzu;    
        ArrayList lstParam = getFileLine(aFilePathONE);
     for (int i = 0; i < lstParam.size(); i++) {
     String strLine = (String) lstParam.get(i);
     int nIndex = strLine.indexOf(SGFileCodeDefine.FILE_DIVIDE_FLAG);
             String Key=strLine.substring(0, nIndex);
            Tempsuzu[i]=Key;
     }
       return Tempsuzu;
     }这个函数Eclipse没有提示错误,编译的时候在Tempsuzu[i]=Key;处出现空指针错误单步调试到String Key=strLine.substring(0, nIndex处时
Key 为4002,