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的主要内容,如果未能解决你的问题,请参考以下文章

[TIA PORTAL][CONVERT] Convert Char Array to DInt...DInt to Char Array..Useful and easy function(代码片段

怎么把json字符串转成数组对象

easy-rules facts 添加扩展数据

很实用的JQuery代码片段(转)

json 个人的vscode的代码片段

几个有用的JavaScript/jQuery代码片段(转)