递归遍历Hashmap中键值对

//递归遍历Hashmap
    public void showItem(HashMap map){
        for(java.util.Map.Entry entry : map.entrySet()){
            Object o = entry.getValue();
            if(o instanceof HashMap) {
                Log.v("TAG", "isMap");
            showItem((HashMap)o);
            }else{
                Log.v("TAG", "itemKey===>"+entry.getKey());
                Log.v("TAG", "itemValue===>"+entry.getValue().toString());
            }
        }
    }

你可能感兴趣的:(递归遍历Hashmap中键值对)