前几天遇到一个需要把HashMap中键或值为空的键值对剔除掉的情况。今天有时间就把这个小知识点来记录下。
如果对正在被迭代的集合进行结构上的改变(即对该集合使用add、remove或clear方法),此时Iterator与集合建立的索引就会找不到元素,该迭代器将会有ConcurrentModificationException异常被抛出。如果使用迭代器自己的remove方法,将迭代器新返回的元素删除,同时删除索引的一致性。
注意:HashMap<K,V>是允许Null Key和Null Value的,但是Hashtable<K,V>是不允许有Null的键和值的。
package com.Dan;
import java.util.*;
public class RemoveNullKeyValue {
/*移除Map中值为空的键值对*/
public static void removeNullEntry(Map map) {
removeNullKey(map);
removeNullValue(map);
}
/*移除键为空的键值对*/
public static void removeNullKey(Map map) {
Set set = map.keySet();
for (Iterator iterator = set.iterator(); iterator.hasNext(); ) {
Object obj = (Object) iterator.next();
remove(obj, iterator);
}
}
/*移除值为空的键值对*/
public static void removeNullValue(Map map) {
Set set = map.keySet();
for (Iterator iterator = set.iterator(); iterator.hasNext(); ) {
Object obj = (Object) iterator.next();
Object value = (Object) map.get(obj);
remove(value, iterator);
}
}
private static void remove(Object obj, Iterator iterator) {
if (obj instanceof String) {
String str = (String) obj;
if (str == null || str.trim().isEmpty()) {
iterator.remove();
}
} else if (obj instanceof Collection) {
Collection col = (Collection) obj;
if (col == null || col.isEmpty()) {
iterator.remove();
}
} else if (obj instanceof Map) {
Map temp = (Map) obj;
if (temp == null || temp.isEmpty()) {
iterator.remove();
}
} else if (obj instanceof Object[]) {
Object[] array = (Object[]) obj;
if (array == null || array.length <= 0) {
iterator.remove();
}
} else {
if (obj == null) {
iterator.remove();
}
}
}
}
写完喽!ㄟ(▔,▔)ㄏㄟ(▔,▔)ㄏㄟ(▔,▔)ㄏ
纸上得来终觉浅,绝知此事要躬行。——陆游
问渠那得清如许,为有源头活水来。——朱嘉
欢迎转载,转载请注明出处!
如果有错误的地方,或者有您的见解,还请不啬赐教!
喜欢的话,麻烦点个赞!