尝试使用Iterator检索的对象时获取NullPointerException

时间:2012-11-16 06:55:36

标签: java exception nullpointerexception

我这是我的代码,它将元素添加到ArrayList

if(countries==null){
  countries = new ArrayList();
  for(int x = 0; x < data.getRowCount(); x++)
  {
      String shortName = data.getString(x,0);
      String code = data.getString(x,1);
      countries.add(x, new Country(code, shortName));
  }
}

以下是迭代器代码

for( Iterator iter = countries.iterator(); iter.hasNext();)
{
   Country country = (Country)iter.next();
   Element optionselect = doc.createElement( "countryselect" );
   optionselect.setAttribute( "name", country.getShortName() );//Getting NULL Pointer Exception
   optionselect.setAttribute( "value", country.getCode() );
   countriesElement.appendChild( optionselect );
}

现在我在行处获得空指针异常:

optionselect.setAttribute( "name", country.getShortName() );

PS:我无法调试它,因为它在生产中运行,我无法在本地服务器上复制它

从第一次看起来,它似乎在ArrayList中有一些值null,但是从代码中我无法弄清楚它是如何可能的。

有人可以对此有所了解(可能是Java 5的错误)。

编辑:我也使用此代码获取空指针

List countryCodes = new ArrayList();
for (int x = 0; x < countries.size(); x++)
{
    Country c = (Country) countries.get(x);
    countryCodes.add(x, c.getCode());// Throwing Exception
}

这确认null中存在countries List对象的某个地方,但查看代码我看不出这是怎么可能的

堆栈跟踪如下:

Stack Trace:java.lang.NullPointerException
    at com.ilrn.controller.modules.Users.appendCountryList(Users.java:985)
    at com.ilrn.controller.modules.Users.setupCountries(Users.java:1348)
    at com.ilrn.controller.modules.Users.gen_add(Users.java:1329)
    at com.ilrn.controller.modules.Users.generate(Users.java:190)
    at com.ilrn.controller.ShellModule.generateShell(ShellModule.java:1958)

Users.java:985是optionselect.setAttribute( "name", country.getShortName() );

Stack Trace(number 2):java.lang.NullPointerException
    at com.ilrn.controller.dto.IlrnCountriesDTO.getCountryCodes(IlrnCountriesDTO.java:45)
    at sun.reflect.GeneratedMethodAccessor471.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)

IlrnCountriesDTO.java:45是countryCodes.add(x, c.getCode());

另请注意,国家/地区列表仅加载一次(首次请求且国家/地区为私有)

经过分析后,我认为这是一个多线程问题。在查看ArrayList代码后,我发现它不是synchronized(因此对于相同的索引,大小可能会增加两次)

 public void add(int index, E element) {
    if (index > size || index < 0)
      throw new IndexOutOfBoundsException(
      "Index: "+index+", Size: "+size);
  ensureCapacity(size+1);  // Increments modCount!!
  System.arraycopy(elementData, index, elementData, index + 1,
         size - index);
  elementData[index] = element;
  size++;
 }

这是国家级(snipet)

private String code_;
private String shortName_;

/**
 * Constructor sets code and short name.
 * 
 * @param code Specifies the code.
 * @param shortName Specifies the short name.
 */
public Country(String code, String shortName)
{
    code_ = code;
    shortName_ = shortName;
}
public String getCode() {
        return code_;
}

public String getShortName() {
        return shortName_;
}

1 个答案:

答案 0 :(得分:1)

你的添加代码看起来有点不对......你有

if (countries != null){
    countries = new ArrayList();
    ...

但不应该是:

if (countries == null){
    countries = new ArrayList();

通常情况下,如果某些内容为空,我们会初始化,否则我们会吹走已经存在的任何内容。