(String url)
| 47 | } |
| 48 | |
| 49 | public static HttpReceive sendPost(String url) { |
| 50 | HttpSend send = new HttpSend(url) |
| 51 | .setMethod(HttpMethod.POST); |
| 52 | return sendHttp(send); |
| 53 | } |
| 54 | |
| 55 | public static HttpReceive sendGet(String url, Map<String, Object> param) { |
| 56 | HttpSend send = new HttpSend(url, param, HttpMethod.GET); |