-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOkHttpHelper.java
More file actions
315 lines (285 loc) · 10.6 KB
/
Copy pathOkHttpHelper.java
File metadata and controls
315 lines (285 loc) · 10.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
import android.webkit.MimeTypeMap;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.SocketTimeoutException;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.FormBody;
import okhttp3.MediaType;
import okhttp3.MultipartBody;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;
public class OkHttpHelper {
private static final String POST_FILE_KEY = "fileList"; //请求参数中文件的key
private static final int MAX_LOAD_TIMES = 5; //下载超时重连次数限制
private static final int CONN_TIMEOUT = 10; //连接超时时间
private static final int WRITE_TIMEOUT = 10; //写入超时时间
private static final int READ_TIMEOUT = 10; //读取超时时间
private static OkHttpClient client = null;
private OkHttpHelper() {
}
private static OkHttpClient getClient() {
if (client == null) {
synchronized (OkHttpHelper.class) {
if (client == null)
client = new OkHttpClient.Builder()
.connectTimeout(CONN_TIMEOUT, TimeUnit.SECONDS)
.writeTimeout(WRITE_TIMEOUT, TimeUnit.SECONDS)
.readTimeout(READ_TIMEOUT, TimeUnit.SECONDS)
.build();
}
}
return client;
}
/**
* 异步回调接口
*/
public interface OnCallListener {
void onSuccess(String result);
void onError(Exception e);
}
/**
* 同步 get
*/
public static String get(String url) throws IOException {
Request request = new Request.Builder()
.url(url)
.build();
Call call = getClient().newCall(request);
Response response = call.execute();
return response.body().string();
}
/**
* 异步 get
*/
public static void get(String url, final OnCallListener listener) {
Request request = new Request.Builder()
.url(url)
.build();
Call call = getClient().newCall(request);
call.enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {
listener.onError(e);
}
@Override
public void onResponse(Call call, Response response) throws IOException {
listener.onSuccess(response.body().string());
}
});
}
/**
* 同步 post [map 形式]
*/
public static String post(String url, Map<String, String> params) throws IOException {
FormBody.Builder builder = new FormBody.Builder();
for (Map.Entry<String, String> entry : params.entrySet()) {
builder.add(entry.getKey(), entry.getValue());
}
Request request = new Request.Builder()
.url(url)
.post(builder.build())
.build();
Call call = getClient().newCall(request);
Response response = call.execute();
return response.body().string();
}
/**
* 异步 post [map 形式]
*/
public static void post(String url, Map<String, String> params, final OnCallListener listener) {
FormBody.Builder builder = new FormBody.Builder();
for (Map.Entry<String, String> entry : params.entrySet()) {
builder.add(entry.getKey(), entry.getValue());
}
Request request = new Request.Builder()
.url(url)
.post(builder.build())
.build();
Call call = getClient().newCall(request);
call.enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {
listener.onError(e);
}
@Override
public void onResponse(Call call, Response response) throws IOException {
listener.onSuccess(response.body().string());
}
});
}
/**
* 同步 post [json 形式]
*/
public static String post(String url, String json) throws IOException {
Request request = new Request.Builder()
.url(url)
.post(RequestBody.create(MediaType.parse("application/json; charset=utf-8"), json))
.build();
Call call = getClient().newCall(request);
Response response = call.execute();
return response.body().string();
}
/**
* 异步 post [json 形式]
*/
public static void post(String url, String json, final OnCallListener listener) {
Request request = new Request.Builder()
.url(url)
.post(RequestBody.create(MediaType.parse("application/json; charset=utf-8"), json))
.build();
Call call = getClient().newCall(request);
call.enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {
listener.onError(e);
}
@Override
public void onResponse(Call call, Response response) throws IOException {
listener.onSuccess(response.body().string());
}
});
}
/**
* 同步 post [多文件上传]
*/
public static String postFiles(String url, Map<String, String> params, List<File> fileList) throws IOException {
MultipartBody.Builder builder = new MultipartBody.Builder().setType(MultipartBody.FORM);
if (params != null) {
for (String key : params.keySet()) {
builder.addFormDataPart(key, params.get(key));
}
}
if (fileList != null && fileList.size() > 0) {
for (File file : fileList) {
RequestBody requestBody = RequestBody.create(MediaType.parse(getMimeType(file)), file);
builder.addFormDataPart(POST_FILE_KEY, file.getName(), requestBody);
}
}
Request request = new Request.Builder()
.url(url)
.post(builder.build())
.build();
Call call = getClient().newCall(request);
Response response = call.execute();
return response.body().string();
}
/**
* 异步 post [多文件上传]
*/
public static void postFiles(String url, Map<String, String> params, List<File> fileList, final OnCallListener listener) {
MultipartBody.Builder builder = new MultipartBody.Builder().setType(MultipartBody.FORM);
if (params != null) {
for (String key : params.keySet()) {
builder.addFormDataPart(key, params.get(key));
}
}
if (fileList != null && fileList.size() > 0) {
for (File file : fileList) {
RequestBody requestBody = RequestBody.create(MediaType.parse(getMimeType(file)), file);
builder.addFormDataPart(POST_FILE_KEY, file.getName(), requestBody);
}
}
Request request = new Request.Builder()
.url(url)
.post(builder.build())
.build();
Call call = getClient().newCall(request);
call.enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {
listener.onError(e);
}
@Override
public void onResponse(Call call, Response response) throws IOException {
listener.onSuccess(response.body().string());
}
});
}
/**
* 下载回调接口
*/
public interface OnDownloadListener {
void onSuccess(String result);
void onError(Exception e);
void onLoading(int progress);
}
/**
* 下载文件
*/
public static void downloadFile(String fileUrl, final String filePath, final OnDownloadListener listener) {
Request request = new Request.Builder()
.url(fileUrl)
.build();
Call call = getClient().newCall(request);
call.enqueue(new Callback() {
int loadTimes = 0; //重新连接次数
@Override
public void onFailure(Call call, IOException e) {
//超时重新连接
if (e.getCause().equals(SocketTimeoutException.class) && loadTimes < MAX_LOAD_TIMES) {
loadTimes++;
getClient().newCall(call.request()).enqueue(this);
} else {
listener.onError(e);
}
}
@Override
public void onResponse(Call call, Response response) throws IOException {
InputStream inputStream = response.body().byteStream();
long contentLength = response.body().contentLength();
FileOutputStream fileOutputStream = null;
try {
fileOutputStream = new FileOutputStream(new File(filePath));
byte[] buffer = new byte[2048];
int len, sum = 0;
while ((len = inputStream.read(buffer)) != -1) {
fileOutputStream.write(buffer, 0, len);
sum += len;
int progress = (int) (sum * 1.0f / contentLength * 100);
listener.onLoading(progress);
}
fileOutputStream.flush();
listener.onSuccess(response.body().string());
} catch (IOException e) {
listener.onError(e);
} finally {
try {
if (inputStream != null)
inputStream.close();
if (fileOutputStream != null)
fileOutputStream.close();
} catch (Exception e) {
listener.onError(e);
}
}
}
});
}
/**
* 工具方法:通过文件获取文件类型
*/
private static String getMimeType(final File file) {
String extension = getExtension(file);
return MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
}
/**
* 工具方法:通过文件获取文件后缀
*/
private static String getExtension(final File file) {
String extension = "";
String name = file.getName();
final int idx = name.lastIndexOf(".");
if (idx > 0) {
extension = name.substring(idx + 1);
}
return extension;
}
}