如何从JSONObject检查值的类型? [英] How to check the type of a value from a JSONObject?

查看:1345
本文介绍了如何从JSONObject检查值的类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试获取存储在 JSONObject 中的值的类型。

I'm trying to get the type of the value stored in a JSONObject.

String jString = {"a": 1, "b": "str"};
JSONObject jObj = new JSONObject(jString);

是否可以获取存储在键中的值的类型a ;
类似 jObj.typeOf(a)= java.lang.Integer

Is it possible to get the type of the value stored at key "a"; something like jObj.typeOf("a") = java.lang.Integer?

推荐答案

您可以使用 get() 方法然后使用 instanceof 运算符检查对象的类型。这样的事情: -

You can get the object from the JSON using the get() method and then use the instanceof operator to check for the type of Object. Something like this:-

String jString = "{\"a\": 1, \"b\": \"str\"}";
JSONObject jObj = new JSONObject(jString);
Object aObj = jObj.get("a");
if(aObj instanceof Integer){
    System.out.println(aObj);
}

这篇关于如何从JSONObject检查值的类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆