(String url)
| 41 | } |
| 42 | |
| 43 | public static HttpReceive sendGet(String url) { |
| 44 | HttpSend send = new HttpSend(url) |
| 45 | .setMethod(HttpMethod.GET); |
| 46 | return sendHttp(send); |
| 47 | } |
| 48 | |
| 49 | public static HttpReceive sendPost(String url) { |
| 50 | HttpSend send = new HttpSend(url) |