如何利用Java代码实现JSON对象和字符串相互转换?用Gson转换就行了,需要下载jar包例子:Person person=new Person()Gson gson=new Gson()String json=gson.toJson(person)