/** * Created by admin on 2017/7/26. */ public class NewPost { private String title; private String content; public NewPost(){ } public NewPost(String title,String content){ setTitle(title); setContent(content); } public String getTitle() { return ti…
下载引入包gson-2.0.jar 1.字符转数据 final Map map = new HashMap();map.put("contents", "[{\"Id\":\"111\",\"AcceptNum\":222,\"ArchiveNum\":333,\"ArchivRate\":444,\"CUR_DATA_DT\":555},{\&quo…
User实体类 package com.test.json; /** * User 实体类 */ public class User { private String name; private String password; private int age; 省略Getter和Setter方法 } } 把对象转为JSON格式的字符串 Gson gson = new Gson(); User user = newUser(); user.setName("我是酱油"); user.s…