-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetworkTask
59 lines (47 loc) · 1.61 KB
/
NetworkTask
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
package com.example.yueyundong1.util;
import org.json.JSONException;
import org.json.JSONObject;
import android.os.AsyncTask;
/**
* 通过AsyncTask封装的一个网络请求工具类, 返回结果通过回调函数返回,通过execute函数调用,第一个参数为请求类型, 第二个为服务器地址,第三个为string类型请求参数
* @author vagrant QQ:513302092
*
* @date 创建时间: 2015年4月27日
*/
public class NetworkTask extends AsyncTask<String, Void, String>{
private stringResponseListener stringListener;
private jsonResponseListener jsonListener;
public static String GET = "get";
public static String POST = "post";
public String response;
@Override
protected String doInBackground(String... params) {
if (params[0].equals(POST)) {
response = HttpUtils.postDataWithHttpURLConnection(params[1], params[2]);
} else if (params[0].equals(GET)) {
response = HttpUtils.postDataWithHttpClient(params[1], params[2]);
}
return response;
}
@Override
protected void onPostExecute(String result) {
stringListener.onTaskComplete(result);
try {
jsonListener.onTaskComplete(new JSONObject(result));
} catch (JSONException e) {
e.printStackTrace();
}
}
public void setStringResponseListener(stringResponseListener listener) {
this.stringListener = listener;
}
public void setJsonResponseListener(jsonResponseListener listener) {
this.jsonListener = listener;
}
public interface stringResponseListener {
abstract void onTaskComplete(String response);
}
public interface jsonResponseListener {
abstract void onTaskComplete(JSONObject response);
}
}