JSONObject中optString和getString等的区别

来源:互联网 发布:ubuntu退出root 编辑:程序博客网 时间:2024/03/29 03:38

    The difference is that optString returns the empty string ("") if the key you specify doesn't exist.getString on the other hand throws a JSONException. Use getString if it's an error for the data to be missing, or optString if you're not sure if it will be there.

    简单来说就是optString会在得不到你想要的值时候返回空字符串”“,而getString会抛出异常。至此,疑惑已经解除。

原创粉丝点击