在 Hutool 中,可以使用 JSONObject 的 has 方法来判断一个 JSONObject 是否包含指定的键。以下是一个示例代码,用于判断 JSONObject 是否包含键名为 “name” 的值。
import cn.hutool.json.JSONObject;
public class Example {
public static void main(String[] args) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("name", "John");
jsonObject.put("age", 30);
if (jsonObject.has("name")) {
System.out.println("JSONObject 包含键名为 name 的值");
} else {
System.out.println("JSONObject 不包含键名为 name 的值");
}
}
}
在上面的示例中,我们首先创建了一个 JSONObject 对象,并添加了两个键值对,其中一个键的名称是 “name”。然后,我们使用 has 方法检查该对象是否包含键名为 “name” 的值。如果包含,则输出 “JSONObject 包含键名为 name 的值”;否则,输出 “JSONObject 不包含键名为 name 的值”。