반응형
// String url = "https://selfsolve.apple.com/wcResults.do";
String url = _url;
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(url);
// add header
post.setHeader("User-Agent", USER_AGENT);
List<NameValuePair> urlParameters = new ArrayList<NameValuePair>();
urlParameters.add(new BasicNameValuePair("aaa", "가나다라"));
post.setEntity(new UrlEncodedFormEntity(urlParameters, "UTF-8"));
단, 이 방법은 Server / Client 의 데이터가 모두 UTF-8 로 인코딩 되어 있다는 전제 하의 작업이므로,
만일 ANSI 나 EUC-KR 일 경우에는 실제 수신한 데이터를 URLEncoder / URLDecoder 로 변경해 주어야 한다.
자세한 내용은
http://stackoverflow.com/questions/8964291/sending-utf8-contents-with-post-method-to-server-in-android-using-httpclient
http://timec.tistory.com/43
를 참조.
입력시작시간:
모바일 스크립트 :
반응형
'프로그램' 카테고리의 다른 글
java Thread, run(). runnable() 차이. (0) | 2014.04.23 |
---|---|
java.lang.ClassCastException: org.json.simple.JSONArray cannot be cast to org.json.JSONArray (3) | 2014.04.04 |
PHP 에서 sleep() 을 쓰면, 서버가 통채로 멈출까? (2) | 2014.04.02 |
CentOS 에서의 한글 지원 설치. (0) | 2014.03.19 |
MYSQL SSL 적용 1 (0) | 2014.03.19 |