系统自带JSonObject解析

前端之家收集整理的这篇文章主要介绍了系统自带JSonObject解析前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

以前用JSonObject解析的时候需要导入一大堆的jar包,所以很不方便。其实android自带JSonObject解析。特意把使用方法记录下来

/**
*上传结果*/privatevoidupLoadResult(Messagemsg){//{"errorDesc":"","code":"000"}Stringresult=(String)msg.obj;JSONTokenertoker=newJSONTokener(result)try{JSONObjectjsonObject=(JSONObject)toker.nextValue()Stringcode=jsonObject.getString("code")StringerrorDesc=jsonObject.getString("errorDesc"if("000".equals(code)){UpLoad.this.finish()}elseToast.makeText(UpLoad.this,"上传失败"+errorDesc,255)">LENGTH_SHORT).show()catch(JSONExceptione){e.printStackTrace()}

导入的包

importorg.json.JSONExceptionorg.json.JSONObjectorg.json.JSONTokener;

原文链接:/json/289504.html

猜你在找的Json相关文章