1.web地图钻取
http://datav.aliyun.com/tools/atlas/index.html#&lat=30.316551722910102&lng=106.68898666525284&zoom=3.5
2.阿里的依赖库
//阿里镜像仓库
maven { url 'http://maven.aliyun.com/nexus/content/repositories/releases/' }
maven { url "https://jitpack.io" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
mavenCentral()
3.转义字符变成正规json
(1)接口原数据,包含转义字符
"{\"code\":200,\"message\":\"success\",\"result\":\"100\",\"successful\":true}"
(2)通过replace去掉斜杠,转义字符变正规json
(3)得到正确的json数据
{"code":200,"message":"success","result":"100","successful":true}