[Android] map type learning abbreviated into json data to the server

[Objective] The android local List <Map <String, Object >> type to json format to the server so that the server resolution.

[Method] use gson.

【achieve】

private List<Map<String, Object>> imgList;
....
Gson gson=new Gson();
String jsonImgList=gson.toJson(imgList);

 

Published 44 original articles · won praise 21 · views 30000 +

Guess you like

Origin blog.csdn.net/gzyh_tech/article/details/82892235