为何我的使用hashmap构建json对象时,在System.out.println(new JSONObject(json).toString());出现语法错误,提示The constructor JSONObject(Map<String,Object>) is undefined未定义。。。
试试System.out.println(new JSONObject().fromObject(json).toString());
JSONObject这个类的构造方法里没有参数为Map的构造方法
System.out.println(json.toString());这样应该就对了