json.parseobject转为int
时间: 2024-01-02 12:03:37 浏览: 80
session 中 Object 转换为int
4星 · 用户满意度95%
如果你有一个 `com.alibaba.fastjson.JSONObject` 对象,需要将其中的某个字段转换为 `int` 类型,可以使用 `getInt` 方法。例如:
```
JSONObject jsonObject = JSON.parseObject("{ \"age\": 25 }");
int age = jsonObject.getIntValue("age");
```
这里的 `getIntValue` 方法会返回字段名为 "age" 的值,并将其转换为 `int` 类型。如果该字段不存在或无法转换为 `int` 类型,会抛出异常。
阅读全文