未来是否还有你
2017-11-27 21:54
为何我的使用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());这样应该就对了
JSON快速入门(Java版)
102037 学习 · 163 问题
相似问题