后端转换JSON

  
在Java中
<dependency>
  <groupId>com.google.code.gson</groupId>
  <artifactId>gson</artifactId>
  <version>2.8.9</version>
</dependency>

// 将Java对象转换为JSON字符串
 gson.toJson()


// 将JSON字符串转换为Java对象
gson.fromJson()

在c#中
可以使用Newtonsoft.Json库来转换JSON

// 将对象转换为JSON字符串
JsonConvert.SerializeObject();
    

 // 将JSON字符串转换回对象
 JsonConvert.DeserializeObject<T>();
       

  

posted @ 2024-06-06 13:55  XiangdxDu  阅读(6)  评论(0编辑  收藏  举报