json.optstring中getInt和optInt的区别

Android JOSN 解析 - 简书
Android JOSN 解析
一、JSON定义
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。 易于人阅读和编写。同时也易于机器解析和生成。 它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999的一个子集。 JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C, C++, C#, Java, JavaScript, Perl, Python等)。 这些特性使JSON成为理想的数据交换语言。二、JSON格式JSON建构于两种结构:
“名称/值”对的集合(A collection of name/value pairs)。不同的语言中,它被理解为对象(object),纪录(record),结构(struct),字典(dictionary),哈希表(hash table),有键列表(keyed list),或者关联数组 (associative array)。值的有序列表(An ordered list of values)。在大部分语言中,它被理解为数组(array)。JSON具有以下这些形式:
对象是一个无序的“‘名称/值’对”集合。一个对象以“{”(左括号)开始,“}”(右括号)结束。每个“名称”后跟一个“:”(冒号);“‘名称/值’ 对”之间使用“,”(逗号)分隔。
数组是值(value)的有序集合。一个数组以“[”(左中括号)开始,“]”(右中括号)结束。值之间使用“,”(逗号)分隔。
值(value)可以是双引号括起来的字符串(string)、数值(number)、true、false、 null、对象(object)或者数组(array)。这些结构可以嵌套。
以上内容摘自:三、JSON解析常用类1. Android JSON所有相关类,都在org.json包下JSONObject、JSONArray、JSONException、JSONStringer、JSONTokener2. 常见方法使用get方法与使用opt方法的区别?JsonObject 方法,opt* 与 get* 建议使用opt方法,因为get方法如果其内容为空会直接抛出异常。不过JsonArray.opt*(index)会有越界问题需要特别注意。opt、optBoolean、optDouble、optInt、optLong、optString、optJSONArray、optJSONObjectget、getBoolean、getDouble、getInt、getLong、getString、getJSONArray、getJSONObject3. Android创建JSONprivate String createJson()throwsJSONException {
JSONObject jsonObject =new JSONObject();
jsonObject.put ("intKey",123);
jsonObject.put ("doubleKey",10.1);
jsonObject.put ("longKey",);
jsonObject.put ("stringKey","lalala");
jsonObject.put ("booleanKey",true);
JSONArray jsonArray =newJSONArray();
jsonArray.put (0,111);
jsonArray.put("second");
jsonObject.put ("arrayKey", jsonArray);
JSONObject innerJsonObject =newJSONObject();
innerJsonObject.put ("innerStr","inner");
jsonObject.put ("innerObjectKey", innerJsonObject);
Log.e("Json", jsonObject.toString());returnjsonObject.toString();}输出结果:{"intKey":123, "doubleKey":10.1, "longKey":, "stringKey":"lalala", "booleanKey":true, "arrayKey":[111,"second"], "innerObjectKey":{"innerStr":"inner"}}4. 解析上面创建的JSONprivate void pareJson(String jsonStr) throws JSONException {
JSONObject jsonObject =newJSONObject(jsonStr);
intintValue
= jsonObject.optInt("intKey");
doubledoubleValue = jsonObject.optDouble("doubleKey");
longlongValue= jsonObject.optLong("longKey");
String strValue
= jsonObject.optString("stringKey");
boolean boolValue
= jsonObject.optBoolean("booleanKey");
JSONArrayarray= jsonObject.optJSONArray("arrayKey");
intarrIntValue=array.optInt(0);
String arrStrValue =array.optString(1);
JSONObject innerJson = jsonObject.optJSONObject("innerObjectKey");
String innerStr = innerJson.optString("innerStr");
Log.e("Json","intValue = "+ intValue +" , doubleValue = "+ doubleValue+" ,
longValue = "+ longValue +" , strValue = "+ strValue+" , booleanValue = "+ boolValue +" , arrIntValue = "+ arrIntValue+" , arrStrValue = "+ arrStrValue +" , innerStr = "+ innerStr);
}输出结果:intValue = 123 , doubleValue = 10.1 , longValue =
, strValue = lalala , booleanValue = true , arrIntValue = 111 , arrStrValue = second , innerStr = inner更多具体信息详见:四、Android JSON解析库
上面介绍都是使用Android提供的原生类解析JSON,最大的好处是项目不需要引入第三方库,但是如果比较注重开发效率而且不在意应用大小增加几百K的话,有以下JSON可供选择:1.2.3.五、格式化工具
在日常开发中,如果涉及到与服务器端调试协议时,过程中难免遇到服务器端发送格式或者Android客户端解析格式出现问题,这时需要把获取到的JSON打印出来进行问题定位,如果JSON比较短一眼就能看出来,但是如果很长的话想查找某一个字段或者JSON数组中某一位的值显得特别困难,想要摆脱这种苦恼也很简单,把JSON字符串格式化之后会发现苦恼瞬间无影无踪。以下是以我常用的Notepad++进行举例,其他的编辑器也肯定有相应的JSON插件,自己可以网上查找一下。Notpad++ Json Viewer插件安装:Notpad++ -& 插件(Plugins) -& Plugin Manager -& Show Plugin Manager -& Avaliable -& 选择Json View -& 安装(install)使用:选中Json字符串,插件(Plugins) -& Format Json(快捷键Ctrl+Alt+Shift+M)插件(Plugins) -& Show Json Viewer
显示Json视图两篇非常好的关于josn解析的文章: 1、(很全面的解析)2、(三种解析方法)11166人阅读
Java(18)
get()取值不正确会抛出异常,必须用try catch或者throw包起
而opt()取值不正确则会试图进行转化或者输出友好值,不会抛出异常
public java.lang.Object opt(java.lang.String&key)
Get an optional value associated with a key.
Parameters: key - A key string. Returns: An object which is the value, or null if there is no value.
public double optDouble(java.lang.String&key)
Get an optional double associated with a key, or NaN if there is no such key or if its value is not a number. If the value is a string, an attempt will be made to evaluate it as a number.
optBoolean
public boolean optBoolean(java.lang.String&key)
Get an optional boolean associated with a key. It returns false if there is no such key, or if the value is not
public int optInt(java.lang.String&key)
Get an optional int value associated with a key, or zero if there is no such key or if the value is not a number. If the value is a string, an attempt will be made to evaluate it as a number.
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:151093次
积分:2329
积分:2329
排名:第12970名
原创:76篇
转载:37篇
评论:19条
(1)(2)(1)(9)(7)(20)(32)(7)(11)(15)(8)}

我要回帖

更多关于 jsonobject.getint 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信