Java tutorial
/** * Copyright (C) 2009-2015 Dell, Inc. * See annotations for authorship information * * ==================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ==================================================================== */ package org.dasein.cloud.utils.requester.streamprocessors; import org.apache.commons.io.IOUtils; import org.dasein.cloud.utils.requester.streamprocessors.exceptions.StreamReadException; import org.json.JSONObject; import javax.annotation.Nullable; import java.io.InputStream; import java.io.StringWriter; import java.lang.reflect.ParameterizedType; /** * Created by Vlad_Munthiu on 11/14/2014. */ public class StreamToJSONObjectProcessor extends StreamProcessor<JSONObject> { @Nullable @Override public JSONObject read(InputStream inputStream, Class<JSONObject> classType) throws StreamReadException { try { StringWriter stringWriter = new StringWriter(); IOUtils.copy(inputStream, stringWriter); return new JSONObject(stringWriter.toString()); } catch (Exception ex) { throw new StreamReadException("Error deserializing input stream into object", tryGetString(inputStream), ((ParameterizedType) classType.getClass().getGenericSuperclass()).getActualTypeArguments()[0]); } } @Nullable @Override public String write(JSONObject object) { return object.toString(); } }