码迷,mamicode.com
首页 > Web开发 > 详细

大话 JSON 之 JSONObject.getString(“”) 方法 和 JSONObject.optString(“”) 的区别

时间:2016-11-17 00:53:05      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:gets   rgs   exce   json.js   .json   ring   verify   ati   stat   

运行以下代码:

public static void main(String[] args)  
{  
    JSONObject test = new JSONObject();  
    test.put("name", "kewen");  
    test.put("empty", null);  
  
    System.out.println("test.optString(\"empty\"):" +test.optString("empty"));  
    System.out.println("test.optString(\"name\"):" +test.optString("name"));  
    System.out.println("test.getString(\"name\"):" + test.getString("name"));  
    System.out.println("test.getString(\"empty\"):" + test.getString("empty"));  
}  

  运行一把就会看到这样的结果 、

test.optString("empty"):  
test.optString("name"):kewen  
test.getString("name"):kewen  
Exception in thread "main" net.sf.json.JSONException: JSONObject["empty"] not found.  
    at net.sf.json.JSONObject.getString(JSONObject.java:2247)  
    at basicUtils.JSONUtil.main(JSONUtil.java:41)  

  因为:在JSONObjecy的key存在值得时候,两者是没有什么区别的,然后如果key对应的value为null,那么getString方法就会报错。

至于为什么会这样我们可以看一下getString的源码

public String getString( String key ) {  
   verifyIsNull();  
   Object o = get( key );  
   if( o != null ){  
      return o.toString();  
   }  
   throw new JSONException( "JSONObject[" + JSONUtils.quote( key ) + "] not found." );  
}  

 

  

 

大话 JSON 之 JSONObject.getString(“”) 方法 和 JSONObject.optString(“”) 的区别

标签:gets   rgs   exce   json.js   .json   ring   verify   ati   stat   

原文地址:http://www.cnblogs.com/Jackie-zhang/p/6071769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!