2019-10-15

1.这里下载:http://www.newtonsoft.com/products/json/
安装:
1.解压下载文件,得到Newtonsoft.Json.dll
2.在项目中添加引用
2.引入命名空间

C#代码 [图片上传失败...(image-428573-1571120194930)]

  1. using Newtonsoft.Json;
  2. using Newtonsoft.Json.Converters;

3.把datatable转换成json格式

C#代码 [图片上传失败...(image-e02c02-1571120194930)]

  1. public string GetAllCategory()
  2. {
  3. string result = "";
  4. DataTable dt= catDAO.GetAllCategory();
  5. result=JsonConvert.SerializeObject(dt, new DataTableConverter());
  6. return result;
  7. }

其他序列化和反序列化,请自行参考文档资料

你可能感兴趣的:(2019-10-15)