panchengyong
10 days ago b2d3f7caf927e5b83ec52efb74f1f818dbb15236
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
function HttpWrapper() {
 
}
 
var http = new HttpWrapper();
/**
 * 下载远程文件到本地,支持断点续传
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param remoteUrl 远程文件URL
 * @param file      要保存到本地的文件对象
 * @param timeout   下载超时,单位是毫秒
 * @param headers    头标志例如{"a":"11"}
 * @return {boolean} true 代表成功 false代表失败
 */
HttpWrapper.prototype.downloadFile = function (remoteUrl, file, timeout, headers) {
    if (httpWrapper == null) {
        return null;
    }
    return httpWrapper.downloadFile(remoteUrl, file, timeout, object2JsonString(headers));
};
/**
 * 下载远程文件到本地,支持断点续传,默认超时时间为30秒
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param remoteUrl 远程文件URL
 * @param file      要保存到本地的路径
 * @param headers    头标志例如{"a":"11"}
 * @return {boolean} true 代表成功 false代表失败
 */
HttpWrapper.prototype.downloadFileDefault = function (remoteUrl, file, headers) {
    if (httpWrapper == null) {
        return null;
    }
    return httpWrapper.downloadFileDefault(remoteUrl, file, object2JsonString(headers));
};
/**
 * Http GET 请求
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param url     请求的URL
 * @param timeout 超时时间 单位毫秒
 * @param headers    头标志例如{"a":"11"}
 * @return {string}  请求后返回的字符串
 */
HttpWrapper.prototype.httpGetDefault = function (url, timeout, headers) {
    if (httpWrapper == null) {
        return null;
    }
    var x = httpWrapper.httpGetDefault(url, timeout, object2JsonString(headers));
    return javaString2string(x);
};
/**
 * Http GET 请求
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param url     请求的URL
 * @param params  参数Map表 例如 {"a":"1"} 这样的参数或者字符串
 * @param timeout 超时时间 单位毫秒
 * @param headers    头标志例如{"a":"11"}
 * @return {null|string}  请求后返回的字符串
 */
HttpWrapper.prototype.httpGet = function (url, params, timeout, headers) {
    if (httpWrapper == null) {
        return null;
    }
    var x = httpWrapper.httpGet(url, object2JsonString(params), timeout, object2JsonString(headers));
    return javaString2string(x);
 
};
 
/**
 * Http POST 请求
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param url     请求的URL
 * @param params  参数,例如 {"a":"1"} 这样的参数或者字符串
 * @param files 要上传的文件,例如 {"file1":"/sdcard/a.txt"}
 * @param timeout 超时时间 单位毫秒
 * @param headers    头标志例如{"a":"11"}
 * @return {null|string}  请求后返回的字符串
 */
HttpWrapper.prototype.httpPost = function (url, params, files, timeout, headers) {
    if (httpWrapper == null) {
        return null;
    }
    var x = httpWrapper.httpPost(url, object2JsonString(params), object2JsonString(files), timeout, object2JsonString(headers));
    return javaString2string(x);
};
 
 
 
 
/**
 * Http POST 请求扩展,底层使用okhttp实现
 * 运行环境: 无限制
 * 兼容版本: Android 4.4 以上
 * 支持 EC 9.6.0+
 * @param url     请求的URL
 * @param params  参数,例如 {"a":"1"} 这样的参数或者字符串
 * @param files 要上传的文件,例如 {"file1":"/sdcard/a.txt"}
 * @param timeout 超时时间 单位毫秒
 * @param headers    头标志例如{"a":"11"}
 * @return {null|string}  请求后返回的字符串
 */
HttpWrapper.prototype.httpPostEx = function (url, params, files, timeout, headers) {
    if (httpWrapper == null) {
        return null;
    }
    var x = httpWrapper.httpPostEx(url, object2JsonString(params), object2JsonString(files), timeout, object2JsonString(headers));
    return javaString2string(x);
};
 
 
 
/**
 * HTTP POST JSON数据
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param url  请求的URL
 * @param json json数据
 * @param timeout 超时时间 单位毫秒
 * @param headers    头标志例如{"a":"11"}
 * @return {null|string} 请求后返回的字符串
 */
HttpWrapper.prototype.postJSON = function (url, json, timeout, headers) {
    if (httpWrapper == null) {
        return null;
    }
    var x = httpWrapper.postJSON(url, object2JsonString(json), timeout, object2JsonString(headers));
    return javaString2string(x);
};
 
 
/**
 * HTTP 请求
 * <Br/>
 * 运行环境: 无限制
 * <Br/>
 * 兼容版本: Android 4.4 以上
 *
 * @param param  map参数,包含的参数有<Br/>
 * url:字符串 请求的地址<Br/>
 * timeout:整型毫秒,超时时间<Br/>
 * method: POST ,GET,PUT 字符串,代表请求的方法<Br/>
 * proxy: 代理地址,map参数 包含主机和端口 例如 {"host":"11","port":111}<Br/>
 * followRedirects:是否自动跳转 true 或者 false<Br/>
 * requestBody: 请求的body体,如果是JSON,就是JSON字符串<Br/>
 * userAgent:字符串 HTTP 的UA <Br/>
 * ignoreContentType:是否忽略内容类型 true 或者 false <Br/>
 * ignoreHttpErrors:是否忽略错误 true 或者 false  <Br/>
 * maxBodySize : 整型,HTTP BODY最大值  <Br/>
 * referrer:字符串,请求来源  <Br/>
 * header:  HTTP 请求头,map参数,例如 {"UA":"test"} <Br/>
 * cookie: HTTP 请求Cookie,map参数, 例如 {"a":1} <Br/>
 * data:HTTP POST的数据,map参数, 例如 {"a":1} <Br/>
 * file:要上传的文件,集合参数,例如<Br/> [
 *                      {"key":"a1","fileName":"a.txt","filePath":"/sdcard/"},
 *                      {"key":"a1","fileName":"a.jpg","filePath":"/sdcard/","contentType":"image/jpg"}
 *                  ]<Br/>
 *                  其中contentType可有可无
 * responseCharset: 字符串,强制设置响应内容的编码集
 * @return {null|Response1} 对象或者null
 */
HttpWrapper.prototype.request = function (param) {
    if (httpWrapper == null || param == null) {
        return null;
    }
    var p = JSON.stringify(param);
    var x = httpWrapper.request(p);
    if (x == null || x == "") {
        return null;
    }
    return new Response1(JSON.parse(x));
};
/**
 *
 * @param param
 * @return {null|Response1}
 */
HttpWrapper.prototype.requestEx = function (param) {
    if (httpWrapper == null || param == null) {
        return null;
    }
    var p = JSON.stringify(param);
    var x = httpWrapper.requestEx(p);
    if (x == null || x == "") {
        return null;
    }
    return new Response1(JSON.parse(x));
};
 
function Response1(data) {
    this.cookie = {};
    this.header = {};
    this.charset = "";
    this.statusMessage = "";
    this.contentType = "";
    this.statusCode = 0;
    this.body = "";
    if (data != null) {
        this.cookie = data["cookie"];
        this.header = data["header"];
        this.charset = data["charset"];
        this.statusMessage = data["statusMessage"];
        this.contentType = data["contentType"];
        this.statusCode = data["statusCode"];
        this.body = data["body"];
    }
}
 
/**
 * 创建一个websocket
 * @param url 要连接的地址
 * @param header 参数头
 * @param type 类库类型,1 okhttp 2 javawebsocket
 * @return {WebSocket1} WebSocket1 对象
 */
HttpWrapper.prototype.newWebsocket = function (url, header, type) {
    var p = null;
    if (header != null) {
        p = JSON.stringify(header);
    }
    var ws = httpWrapper.websocket(url, p, type);
    return new WebSocket1(ws);
};
 
 
function WebSocket1(ws) {
    this.websocketClient = ws;
}
 
 
/**
 * 发送心跳函数
 * 这里调用一次即可,内部已经实现了按照设定的周期时间发送
 * @param heartDataBinCallback 心跳的二进制数据,一定要返回byte[]数组
 * @param heartDataStrCallback 心跳的文本数据,直接返回字符串
 * @param period               心跳周期 时间是毫秒
 * @param cancelOld            是否取消老的,true 或者false
 */
WebSocket1.prototype.startHeartBeat = function (heartDataBinCallback, heartDataStrCallback, period, cancelOld) {
    if (this.websocketClient != null) {
        this.websocketClient.startHeartBeat(heartDataBinCallback, heartDataStrCallback, period, cancelOld);
    }
};
/**
 * 停止心跳函数
 */
WebSocket1.prototype.stopHeartBeat = function () {
    if (this.websocketClient != null) {
        this.websocketClient.stopHeartBeat();
    }
};
/**
 * 开始异步连接
 * @param timeout 链接超时时间
 * @return {boolean} true 代表成功 false代表失败
 */
WebSocket1.prototype.connect = function (timeout) {
    if (this.websocketClient != null) {
        return this.websocketClient.connect(timeout);
    }
    return false;
};
 
 
/**
 * EC 6.17.0+ [已过期]
 * 重置连接
 * @return {boolean} true 代表成功 false代表失败
 */
WebSocket1.prototype.reset = function () {
    if (this.websocketClient != null) {
        return this.websocketClient.reset();
    }
    return false;
};
 
 
/**
 * EC 6.17.0+ [已过期]
 * 开始同步重新链接
 * @return {boolean} true 代表链接成功 false代表失败
 */
WebSocket1.prototype.reconnectBlocking = function () {
    if (this.websocketClient != null) {
        return this.websocketClient.reconnectBlocking();
    }
    return false;
};
 
 
/**
 * EC 6.17.0+ [已过期]
 * 开始同步链接
 * @param timeout 链接超时时间 单位是毫秒
 * @return {boolean} true 代表链接成功 false代表失败
 */
WebSocket1.prototype.connectBlocking = function (timeout) {
    if (this.websocketClient != null) {
        return this.websocketClient.connectBlocking(timeout);
    }
    return false;
};
 
 
/**
 * 是否已经关闭
 * @return {boolean} true 代表已经关闭,false 未关闭
 */
WebSocket1.prototype.isClosed = function () {
    if (this.websocketClient != null) {
        return this.websocketClient.isClosed();
    }
    return true;
};
 
 
/**
 * 是否已经连接了
 * @return {boolean}  true 代表已经连接,false 未连接
 */
WebSocket1.prototype.isConnected = function () {
    if (this.websocketClient != null) {
        return this.websocketClient.isConnected();
    }
    return false;
};
 
 
/**
 * 关闭链接
 */
WebSocket1.prototype.close = function () {
    this.websocketClient.close();
};
 
/**
 * 适用EC 6.17.0+
 * 设置自动重连
 * @param {boolean}  true 代表自动重连
 */
WebSocket1.prototype.setAutoReconnect = function (v) {
    this.websocketClient.setAutoReconnect(v);
};
/**
 * 适用EC 6.17.0+
 * 在创建websocket链接类型=2的时候使用
 * 设置丢失链接超时时间
 * @param timeout 单位是秒
 */
WebSocket1.prototype.setConnectionLostTimeout = function (timeout) {
    this.websocketClient.setConnectionLostTimeout(timeout);
};
 
 
/**
 * 适用EC 6.17.0+
 * 在创建websocket链接类型=1的时候使用
 * 设置数据读取超时时间
 * @param timeout 单位是秒
 */
WebSocket1.prototype.setReadTimeout = function (timeout) {
    this.websocketClient.setReadTimeout(timeout);
};
 
/**
 * 适用EC 6.17.0+
 * 在创建websocket链接类型=1的时候使用
 * 设置数据写入超时时间
 * @param timeout 单位是秒
 */
WebSocket1.prototype.setWriteTimeout = function (timeout) {
    this.websocketClient.setWriteTimeout(timeout);
};
 
 
/**
 * 适用EC 6.17.0+
 * 在创建websocket链接类型=1的时候使用
 * 设置心跳超时时间
 * @param timeout 单位是秒
 */
WebSocket1.prototype.setPingInterval = function (timeout) {
    this.websocketClient.setPingInterval(timeout);
};
 
 
/**
 * 适用EC 6.17.0+
 * 在创建websocket链接类型=1的时候使用
 * 设置调用超时时间
 * @param timeout 单位是秒
 */
WebSocket1.prototype.setCallTimeout = function (timeout) {
    this.websocketClient.setCallTimeout(timeout);
};
 
 
/**
 * 发送文本消息
 * @param text 文本信息
 * @return {boolean}  true 代表成功,false 失败
 */
WebSocket1.prototype.sendText = function (text) {
    return this.websocketClient.sendText(text);
};
/**
 * 发送字节信息
 * @param bin
 * @return {boolean}  true 代表成功,false 失败
 */
WebSocket1.prototype.sendBinary = function (bin) {
    return this.websocketClient.sendBinary(bin);
};
 
/**
 * 当连接打开的时候事件回调
 * @param callback 回调函数
 */
WebSocket1.prototype.onOpen = function (callback) {
    this.websocketClient.setCallbackOnOpen(callback);
};
/**
 * 当有文本信息发送过来的时候回调
 * @param callback 回调函数
 */
WebSocket1.prototype.onText = function (callback) {
    this.websocketClient.setCallbackOnText(callback);
};
/**
 * 当关闭的时候回调
 * @param callback 回调函数
 */
WebSocket1.prototype.onClose = function (callback) {
    this.websocketClient.setCallbackOnClose(callback);
};
/**
 * 当发生错误的时候回调
 * @param callback 回调函数
 */
WebSocket1.prototype.onError = function (callback) {
    this.websocketClient.setCallbackOnError(callback);
};
/**
 * 当有二进制数据过来的时候回调
 * @param callback 回调函数
 */
WebSocket1.prototype.onBinary = function (callback) {
    this.websocketClient.setCallbackOnBinary(callback);
};