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

cc.kebei.expands.request.http.HttpDownloader Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package cc.kebei.expands.request.http;

import java.io.File;
import java.io.IOException;
import java.io.OutputStream;

/**
 * http请求下载器,用户文件下载等操作
 * Created by Kebei on 16-6-23.
 */
public interface HttpDownloader {

    HttpDownloader get() throws IOException;

    HttpDownloader post() throws IOException;

    R write(File file) throws IOException;

    R write(OutputStream outputStream) throws IOException;

    Response response()throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy