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; }