Package org.codehaus.groovy.grails.web.json

Examples of org.codehaus.groovy.grails.web.json.JSONObject


    }
  }

  public static String mapToString(Map<String, Object> map)
  {
    JSONObject jsonObject = mapToJSONObject(map);
    if (jsonObject != null)
      return jsonObject.toString();
    return "";
  }
View Full Code Here


  {
    if (map == null)
      return null;
    try
    {
      JSONObject jsonObject = new JSONObject();
      for (Entry<String, Object> entry: map.entrySet())
        jsonObject.put(Camelizer.unCamelize(entry.getKey()), normalizeToJSONValue(entry.getValue()));
      return jsonObject;
    }
    catch (Throwable t)
    {
      return null;
View Full Code Here

        }
        throw new Error("Missing return statement in function");
    }

    final private JSONObject JsonObject() throws ParseException {
        JSONObject o = new JSONObject();
        jj_consume_token(20);
        switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) {
            case SINGLE_QUOTE_LITERAL:
            case DOUBLE_QUOTE_LITERAL:
                Members(o);
View Full Code Here

            if (value instanceof JSONElement) {
                return (JSONElement) value;
            }

            // return empty object
            return new JSONObject();
        }
        catch (JSONException e) {
            throw new ConverterException("Error parsing JSON", e);
        }
    }
View Full Code Here

                pushbackInputStream = new PushbackInputStream(request.getInputStream());
                firstByte = pushbackInputStream.read();
            } catch (IOException ioe) {}

            if (firstByte == -1) {
                return new JSONObject();
            }

            pushbackInputStream.unread(firstByte);
            json = parse(pushbackInputStream, encoding);
            request.setAttribute(CACHED_JSON, json);
View Full Code Here

TOP

Related Classes of org.codehaus.groovy.grails.web.json.JSONObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.