您好,登錄后才能下訂單哦!
本篇文章為大家展示了JSON中optString和getString的區別是什么,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
常見使用原生的解析json方法:
JSONObject jsonObject = new JSONObject();
String str1 = jsonObject.optString("6不6");
String str2 = jsonObject.optString("6不6","默認6");
try {
String str3 = jsonObject.getString("666");
} catch (JSONException e) {
e.printStackTrace();
}
一:optString與getString的區別:
optString會在得不到你想要的值時候返回空字符串“ ”或指定的默認值,而getString會拋出異常。
optString可以解決服務器字段缺少或者沒有該字段而導致的異常以至于程序崩潰。
推薦使用optString,可避免接口字段的缺失、value的數據類型轉換等異常。
二:getString()可獲取任意類型的數據?
先看JSONObject的源碼如下:
JSONObject類部分源碼:
/**
* Returns the value mapped by {@code name} if it exists, coercing it if
* necessary, or throws if no such mapping exists.
*
* @throws JSONException if no such mapping exists.
*/
public String getString(String name) throws JSONException {
Object object = get(name);
String result = JSON.toString(object);//任何類型強轉為string
if (result == null) {
throw JSON.typeMismatch(name, object, "String");//為空拋出解析
}
return result;
}
/**
* Returns the value mapped by {@code name} if it exists, coercing it if
* necessary, or the empty string if no such mapping exists.
*/
public String optString(String name) {
return optString(name, "");
}
/**
* Returns the value mapped by {@code name} if it exists, coercing it if
* necessary, or {@code fallback} if no such mapping exists.
*/
public String optString(String name, String fallback) {
Object object = opt(name);
String result = JSON.toString(object);
return result != null ? result : fallback;//不為空取結果,為空取指定值
}
可以看到getString、optString任意類型的value在return之前都會被強轉為string類型,
這也就是為什么一直用getString來獲取字段時從沒出現過數據類型異常的原因。
getString只有在沒有該字段或結果為null的時候才會拋出異常。類型不會導致異常。
上述內容就是JSON中optString和getString的區別是什么,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。