1.删除map中值为null,"",0,0.0的map
/**
* 检查map,去除其中为0或者为"",或者为Null的键
* @param map
*/
@SuppressWarnings("rawtypes")
public static void checkMap(Map map){
checkMap(map, true, true, true);
}
/**
* 检查map
* @param map
* @param NULL 去除空null
* @param ZERO 去除0,0.0
* @param KONG 去除""
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public static void checkMap(Map map,boolean NULL,boolean ZERO,boolean KONG){
Set<Map.Entry> mapEntries = map.entrySet();
Iterator it = mapEntries.iterator();
while(it.hasNext()){
Map.Entry entry = (Entry) it.next();
if(NULL){
if(entry.getValue()==null){
it.remove();
continue;
}
}
if(ZERO){
if(entry.getValue().equals(0)||entry.getValue().equals("0")||entry.getValue().equals("0.0")||entry.getValue().equals(0.0)){
it.remove();
continue;
}
}
if(KONG){
if(entry.getValue().toString().equalsIgnoreCase("")){
it.remove();
continue;
}
}
}
}
上面这个方法的参数千万不要这么学,太长,而且没有什么明显的含义。
不过因为我目前只使用过一个参数的方法,所以等想修改这个方法的时候,不会引起太多问题。
建议boolean参数多的方法使用类似:1<<0,1<<1,1<<2这样的方式来判断,通过这些数字相加。然后判断的时候通过&来判断。
如果你不明白这种方式或者有疑问,我建议你看看java.lang.reflect.Modifier
上面这段代码有一个很关键的地方就是删除map的key时,使用的it.remove()而不是map.remove(K);这是因为:
当使用 fail-fast iterator 对 Collection 或 Map 进行迭代操作过程中尝试直接修改 Collection / Map 的内容时,即使是在单线程下运行, java.util.ConcurrentModificationException 异常也将被抛出。
Iterator 是工作在一个独立的线程中,并且拥有一个 mutex 锁。 Iterator 被创建之后会建立一个指向原来对象的单链索引表,当原来的对象数量发生变化时,这个索引表的内容不会同步改变,所以当索引指针往后移动的时候就找不到要迭代的对象,所以按照 fail-fast 原则 Iterator 会马上抛出 java.util.ConcurrentModificationException 异常。
所以 Iterator 在工作的时候是不允许被迭代的对象被改变的。但你可以使用 Iterator 本身的方法 remove() 来删除对象, Iterator.remove() 方法会在删除当前迭代对象的同时维护索引的一致性。
2.强制转换map<String,V>类型为map<String,Object>:
泛型没法直接进行转换(如果有,可以告诉我)。通过遍历map,转换map。
public static HashMap converType(Map map){
HashMap<String,Object> hashMap = new HashMap<String,Object>();
Set<Map.Entry> mapEntries = map.entrySet();
Iterator it = mapEntries.iterator();
while(it.hasNext()){
Map.Entry entry = (Entry) it.next();
hashMap.put(String.valueOf(entry.getKey()),entry.getValue());
}
return hashMap;
}
3.上面两个方法,其实就是在说Map的Entry
Set<Map.Entry> mapEntries = map.entrySet();
Iterator it = mapEntries.iterator();
while(it.hasNext()){
Map.Entry entry = (Entry) it.next();
System.out.println(entry.getKey()+":"+entry.getValue());
}
map的K,V可以通过Entry访问...就这么多了。
记下来以后自己看。