string转json

Posted wutantan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string转json相关的知识,希望对你有一定的参考价值。

首先添加maven依赖

1 <dependency>
2             <groupId>org.json</groupId>
3             <artifactId>org.json</artifactId>
4             <version>chargebee-1.0</version>
5 </dependency>

string转json

1 public static JSONObject strToJson(String str) throws JSONException{
2         str = "{"code":"0","msg":"success","data":{"taskStatus":1}}";
3         JSONObject jsonObj = new JSONObject(str);
4         System.out.print(jsonObj + "
");
5         System.out.print(jsonObj.get("code"));
6         return jsonObj;
7 }

 

以上是关于string转json的主要内容,如果未能解决你的问题,请参考以下文章

java中把json怎么转换成数组?

string转换为json

js中怎么把对象转成string

JSON字符串转实体对象

阿里巴巴json fastjson String转javaBean

解决fasterxml中string字符串转对象json格式错误问题