른록노트
[Java] JsonObject인지 JsonArray인지 확인하는 방법 본문
@ 코드
String data = "{ ... }";
Object json = new JSONTokener(data).nextValue();
if (json instanceof JSONObject)
//you have an object
else if (json instanceof JSONArray)
참고사이트
https://code-examples.net/ko/q/5d5d34
반응형
Comments