加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

JSONObject中取String 值的几种方法和对比

发布时间:2020-12-16 19:05:18 所属栏目:百科 来源:网络整理
导读:今天写代码的时候发现以前写JSON中取String值喜欢这样写: String kewen = (String)test.get("kewen"); 其实这样写比较挫,一般来说JSON对象中取String类型的值有这两种方法: test.getString("name");test.optString("name"); 然后来看一下这两种方法有什么

今天写代码的时候发现以前写JSON中取String值喜欢这样写:

String kewen = (String)test.get("kewen");

其实这样写比较挫,一般来说JSON对象中取String类型的值有这两种方法:
		test.getString("name");
		test.optString("name");

然后来看一下这两种方法有什么不同
	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." );
   }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读