public static void mapCopy(Map paramsMap, Map resultMap) {
if (resultMap == null){
resultMap = new HashMap();
}
if (paramsMap == null){
return;
}
Iterator it = paramsMap.entrySet().iterator();
while (it.hasNext()) {
Map.Entry entry = (Map.Entry) it.next();
Object key = entry.getKey();
resultMap.put(key, paramsMap.get(key) != null ? paramsMap.get(key) : "");
}
}