在Java中,可以使用JSONObject的has()
方法來判斷一個JSONObject是否存在某個key。
示例代碼如下:
import org.json.JSONObject;
public class Main {
public static void main(String[] args) {
JSONObject jsonObject = new JSONObject("{\"name\":\"Alice\",\"age\":20}");
boolean hasNameKey = jsonObject.has("name");
boolean hasEmailKey = jsonObject.has("email");
System.out.println("Has name key: " + hasNameKey);
System.out.println("Has email key: " + hasEmailKey);
}
}
輸出結果:
Has name key: true
Has email key: false
在上述示例中,首先創建了一個JSONObject對象。然后使用has()
方法分別判斷了JSONObject是否存在"name"和"email"這兩個key。最后輸出了判斷結果。