原文链接:https://blog.csdn.net/tcctcszhanghao/article/details/105518893

/**
* json格式转Get
* @param body
* @return
*/
private String jsonToGet(String body){
return body.replace("{", "").replace("}", "").
replace("\"", "").replace("'", "").
replace(":", "=").replace(",", "&");
}

相关文章:

  • 2021-08-14
  • 2021-06-12
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-12-27
  • 2022-02-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-15
  • 2021-12-05
  • 2022-02-07
  • 2021-06-13
  • 2021-10-21
相关资源
相似解决方案