使用fastjson对字符串格式化为JSON对象

前端之家收集整理的这篇文章主要介绍了使用fastjson对字符串格式化为JSON对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package test;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;


public class demotest {
    public static void main(String[] args){

        JSONObject jSONObject = JSON.parSEObject("{'errMsg':'','errType':'','result':true,'resultList':[],'resultMap':{'username':'wangch','userrealname':'鐜嬫垚','userwallet':189,'userduty':'','userlxdh':'16587788578','userzw':'1','userdw':'751154a1ca894c6abd5cc8f8b0d11009','userno':'90000','usersfzhm':'370102198001010613'},'resultObj':null,'resultStr':''}"); String a = jSONObject.get("result").toString(); //System.out.println(a); if (a == "true"){ System.out.println("pass"); }else{ System.out.println("fail"); } } } 

fastjson 点我进入下载

原文链接:https://www.f2er.com/json/289039.html

猜你在找的Json相关文章