C# 使用Newtonsoft.Json操作 Json字符串和实体类class的相互转换

1、Json字符串转换为实体类

 1 public class RegUnLock
 2     {
 3         /// <summary>
 4         /// 医院编号
 5         /// </summary>
 6         public string hospitalCode { get; set; }
 7         /// <summary>
 8         /// 患者在医院的id
 9         /// </summary>
10         public string patientId { get; set; }
11      }
12 
13 var regUnLockInputDto = JsonConvert.DeserializeObject<RegUnLock>(reqData);



1.1  Json字符串转换为实体类(不想新建实体类)可用默认的JObject类

1 var result = JsonConvert.DeserializeObject<JObject>(jsonResult);
2 if (result != null)
3 {
4   var code = result["code"]?.ToString();
5   if (code != "1")
6   {
7       var msg = result["message"]?.ToString();                      
8     }
9 }

 

2、实体类转换为Json字符串

1 RegUnLock regUnlock=new RegUnLock();
2 regUnlock.hospitalCode="1111";
3 regUnlock.patientId="2222";
4 
5 string strJson = JsonConvert.SerializeObject(regUnlock);

 

posted @ 2022-07-07 13:27  进击的黑大帅  阅读(2731)  评论(0编辑  收藏  举报