一、需要的包
二、生成gson串
1、避免回环情况
GsonBuilder gb=new GsonBuilder();
Gson gson=gb.create();
String result=gson.toJson("hello world");
System.out.print("gson串:"+result);
2、可能导致回环(不建议使用)
Gson gson=new Gson();
String result=gson.toJson("hello world");
System.out.print("gson串:"+result);
三、解析gson串
实质上是使用了一个方法fromJson();
String str="{'hhhaksd'}";
Gson gson=new Gson();
String res=gson.fromJson(str, String.class);
注意:如果gson是对象或者其它数据结构,那么需要改变!