尝试将Map<String, String>创建为JSONObject对象,失败/
Map<String, Object> map = new HashMap<>();
map.put("key1","value1");
map.put("key2","value2");
JSONObject json = new JSONObject(map);
System.out.println(json);
能够成功创建JSONObject对象
依赖没进runtime