HttpClient 가 android 6.0 에서 삭제 되었다.
build.gradle 에
android {
useLibrary 'org.apache.http.legacy'
}
를 추가 한뒤에 사용하던지 - deprecated 된 상태로 나온다. - 가로줄 쳐짐.
HttpURLConnection 을 대신 사용 하도록 한다.
URL url = new URL("http://some-server");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
// read the response
System.out.println("Response Code: " + conn.getResponseCode());
InputStream in = new BufferedInputStream(conn.getInputStream());
String response = org.apache.commons.io.IOUtils.toString(in, "UTF-8");
System.out.println(response);
'android' 카테고리의 다른 글
managedQuery() deprecated => getContentResolver.query() 로 대체 (0) | 2015.11.23 |
---|---|
LoaderManager simple example - CursorLoader 의 사용 (1) | 2015.11.23 |
안드로이드 시스템의 이미지 및 기본 아이콘에 대한 정보 확인 가능한 사이트 (0) | 2015.11.23 |
안드로이드 스튜디오 "Autoscroll to Source, Autoscroll from Source" 설정을 저장하자. (0) | 2015.11.20 |
[풀소스공유/Full Source] "매일매일 체중계" 어플리케이션 소스 공유 (0) | 2015.11.20 |