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

io.github.saoxuequ.http.request.light.reader.JsonResponse Maven / Gradle / Ivy

package io.github.saoxuequ.http.request.light.reader;

import com.alibaba.fastjson.JSONObject;
import io.github.saoxuequ.http.request.common.Readable;
import org.apache.commons.io.IOUtils;

import java.io.IOException;
import java.io.InputStream;

public class JsonResponse implements Readable {

    private final Class type;

    public JsonResponse(Class type) {
        this.type = type;
    }

    @Override
    public T read(InputStream inputStream) {
        try (InputStream is = inputStream) {
            return JSONObject.parseObject(IOUtils.toString(is), type);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy