详解Android原生json和fastjson的简单使用
android原生操作json数据主要是两个类 JSONObject 操作对象 JONSArray操作json数组对象转json//创建学生对象Student student=new Student();student.setAge(23);student.setClazz("六年级");student.setName("王二麻子");//创建JSONObject JSONObject jsonObject=new JSONObject();//键值对赋值...