Package org.restlet.ext.json

Examples of org.restlet.ext.json.JsonRepresentation.toJsonObject()


            throw resp.getStatus().getThrowable();
        }

        try {
            JsonRepresentation repr = new JsonRepresentation(resp.getEntity());
            JSONObject o = repr.toJsonObject();
            System.out.println("Server version:   " + o.optString("server_version"));
            System.out.println("ReST API version: " + o.optInt("api_version"));
        }
        catch (JSONException err) {
            throw new Exception ("Cannot Decode JSON", err);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.