JSONObject转Map

/**
	 * 
	 * @Title: jsonToMap
	 * @Description: TODO JSONObject转Map
	 * @param j
	 * @return 
	 * @Author:wushigao
	 * @CreateDate:2022年8月22日 上午10:24:52
	 */
	public static Map jsonObjectToMap(JSONObject j)
	{
		 Map<String, Object> map = new HashMap<>();       
		//循环转换                
		for (Map.Entry<String, Object> entry : j.entrySet()) {                    
			map.put(entry.getKey(), entry.getValue());                
		}            
		return map;
	}

  

posted @ 2022-08-22 10:27  信铁寒胜  阅读(1818)  评论(0编辑  收藏  举报