android: add json array to java value

This commit is contained in:
王劲鹏 2020-08-03 12:36:37 +08:00 committed by osborn
parent 4c59468963
commit 663c3d5b92

View File

@ -79,6 +79,8 @@ public class DoricUtils {
return new JavaValue(((JSONBuilder) arg).toJSONObject());
} else if (arg instanceof JSONObject) {
return new JavaValue((JSONObject) arg);
} else if (arg instanceof JSONArray) {
return new JavaValue((JSONArray) arg);
} else if (arg instanceof String) {
return new JavaValue((String) arg);
} else if (arg instanceof Integer) {