간단한 java http client 가 있다. android도 지원하는 경량 java http client이다.
OkHttp - http://square.github.io/okhttp
public static final MediaType JSON
= MediaType.parse("application/json; charset=utf-8");
OkHttpClient client = new OkHttpClient();
String post(String url, String json) throws IOException {
RequestBody body = RequestBody.create(JSON, json);
Request request = new Request.Builder()
.url(url)
.post(body)
.build();
Response response = client.newCall(request).execute();
return response.body().string();
}
'scribbling' 카테고리의 다른 글
[펌] uber 아키텍처 (0) | 2017.05.22 |
---|---|
goto 2017(chicago, 2017/5/1~2017/5/2) 자료 다운받기 (0) | 2017.05.16 |
아파치 오로라(Apache Aurora) (0) | 2017.04.21 |
[메소스] DRF 알고리즘 (0) | 2017.04.20 |
[펌] 스칼라 컨퍼런스에서 Web과 Stream 선호도 (0) | 2017.04.10 |