cc.kebei.expands.request.http.HttpDownloader Maven / Gradle / Ivy
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;
}