Java tutorial
/* * Copyright (c) 2012-2014 Daniel Serdyukov * * 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 com.exzogeni.dk.http.callback; import android.support.annotation.NonNull; import com.exzogeni.dk.http.HttpException; import com.exzogeni.dk.log.Logger; import org.apache.commons.io.IOUtils; import java.io.InputStream; import java.util.List; import java.util.Map; /** * @author Daniel Serdyukov */ public class StringCallback implements HttpCallback<String> { @Override public String onSuccess(int statusCode, @NonNull Map<String, List<String>> headers, @NonNull InputStream content) throws Exception { final String result = IOUtils.toString(content); onSuccess(statusCode, headers, result); return result; } @Override public void onException(@NonNull HttpException e) { Logger.error(e); } public void onSuccess(int statusCode, @NonNull Map<String, List<String>> headers, @NonNull String content) { Logger.info(content); } }