当前位置: 首页 > 工具软件 > LitJSON > 使用案例 >

LitJson的使用

穆宾白
2023-12-01

LitJson的使用

引入LitJson.dll
1. JSON转化为object 方法是 jsonmapper.toobject
2. object转化为JSON 方法是 jsonmapper.tojson
3. 转json时,以对象的形式转
Person bill = new Person();
bill.Name = “William Shakespeare”;
bill.Age = 51;
bill.Birthday = new DateTime(1564, 4, 26);
string json_bill = JsonMapper.ToJson(bill);
4. 获取Json也是以对象的形式获取
Person thomas = JsonMapper.ToObject(json);
5. 当不存在特定的JSON数据类时,它将返回一个JsonData实例。JsonData是一种通用型可以保存任何数据类型支持JSON,包括List和Dictionary
JsonData data = JsonMapper.ToObject(json_text);
6. 一些人喜欢使用stream的方式处理JSON数据,对于他们, 我们提供的接口是JsonReader和JsonWriter。
JsonMapper是建立在以上两个类的基础上的,所以你可以把这两个类当成是LitJson的底层接口。
JsonReader reader = new JsonReader(json);
7. 在项目中用LitJson创建保存Json文件或获取Json文件中的对象的值时,需要用FileStream对文件保存或获取

 类似资料: