次の Android Java コードがあります。
String json = "{\"Name_1\":1,\"Name_2\":0,\"Name_3\":0}";
JSONObject object = new JSONObject(json);
String[] propertyNames = JSONObject.getNames(object);
values = new String[propertyNames.length];
for (int i = 0; i < propertyNames.length; i++) {
values[i] = String.valueOf(object.get(propertyNames[i]));
}
しかし、次のエラーが表示されます: The method getNames(JSONObject)
is undefined for the type JSONObject
. を取得するにはどうすればよいpropertyNames
ですか?