jsonObject.getIntValue方法
时间: 2024-05-12 21:20:06 浏览: 129
java的JsonObject对象提取值方法
jsonObject.getIntValue方法是阿里巴巴fastjson中的一个方法,用于获取指定key对应的int类型的值。该方法的定义如下:
```
public Integer getIntValue(String key)
```
其中,jsonObject为JSONObject对象,key为要获取值的key。
使用示例:
```java
JSONObject jsonObject = new JSONObject();
jsonObject.put("age", 18);
int age = jsonObject.getIntValue("age");
System.out.println(age); // 输出18
```
如果获取的key不存在或者对应的值不是int类型,则会返回null。因此,使用该方法时需要进行null判断。
阅读全文