我正在尝试使用putAll()将地图放入属性,并在我的地图不为空时获取NullPointerException
Map<String,Object> map = item.getProperties();
Properties props = new Properties();
if(map!=null) {
props.putAll(map); //NPE here
}
item.getProperties()返回Map,我想将这些属性存储到属性文件中。
我还试图首先实例化地图
Map<String,Object> map = new HashMap<String, Object>()
map = item.getProperties();
Properties props = new Properties();
if(map!=null) {
props.putAll(map); //NPE here
}
我知道地图不是空的,因为我可以在日志中看到地图值。
答案 0 :(得分:3)
Properties
类扩展Hashtable
does not accept null
values for its entries.
任何非null对象都可以用作键或值。
如果您尝试设置null
值,Hashtable#put(Object, Object)
方法会抛出NullPointerException
。这可能是你的
map = item.getProperties();
包含null
个值。
答案 1 :(得分:0)
public synchronized V put(K key, V value) {
// Make sure the value is not null
if (value == null) {
throw new NullPointerException();
}
// Makes sure the key is not already in the hashtable.
Entry tab[] = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
if ((e.hash == hash) && e.key.equals(key)) {
V old = e.value;
e.value = value;
return old;
}
}
modCount++;
if (count >= threshold) {
// Rehash the table if the threshold is exceeded
rehash();
tab = table;
index = (hash & 0x7FFFFFFF) % tab.length;
}
// Creates the new entry.
Entry<K,V> e = tab[index];
tab[index] = new Entry<K,V>(hash, key, value, e);
count++;
return null;
}
也许你的地图有空键或值。