All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avos.avoscloud.JSONHelper Maven / Gradle / Ivy

package com.avos.avoscloud;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import java.util.*;

/**
 * Created with IntelliJ IDEA. User: zhuzeng Date: 9/3/13 Time: 10:02 PM To change this template use
 * File | Settings | File Templates.
 */
public class JSONHelper {
  public static Object toJSON(Object object) throws JSONException {
    if (object instanceof Map) {
      JSONObject json = new JSONObject();
      Map map = (Map) object;
      for (Object key : map.keySet()) {
        json.put(key.toString(), toJSON(map.get(key)));
      }
      return json;
    } else if (object instanceof Iterable) {
      JSONArray json = new JSONArray();
      for (Object value : ((Iterable) object)) {
        json.put(value);
      }
      return json;
    } else {
      return object;
    }
  }

  public static boolean isEmptyObject(JSONObject object) {
    return object.names() == null;
  }

  public static Map getMap(JSONObject object, String key) throws JSONException {
    return toMap(object.getJSONObject(key));
  }

  public static Map toMap(JSONObject object) throws JSONException {
    Map map = new HashMap();
    Iterator keys = object.keys();
    while (keys.hasNext()) {
      String key = (String) keys.next();
      map.put(key, fromJson(object.get(key)));
    }
    return map;
  }

  public static Map mapFromString(String content) throws JSONException {
    JSONObject jsonObject = new JSONObject(content);
    Map map = toMap(jsonObject);
    return map;
  }

  public static List toList(JSONArray array) throws JSONException {
    List list = new ArrayList();
    for (int i = 0; i < array.length(); i++) {
      list.add(fromJson(array.get(i)));
    }
    return list;
  }

  private static Object fromJson(Object json) throws JSONException {
    if (json == JSONObject.NULL) {
      return null;
    } else if (json instanceof JSONObject) {
      return toMap((JSONObject) json);
    } else if (json instanceof JSONArray) {
      return toList((JSONArray) json);
    } else {
      return json;
    }
  }

  public static String toJsonString(Map map) {
    JSONObject object = new JSONObject(map);
    String jsonString = object.toString();
    return jsonString;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy