Contents

Views 6495 Comment 1
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

라이브러리 안 쓰고 간단한 POST 전송하는 예제

public void postData() {
    // Create a new HttpClient and Post Header
    HttpClient httpclient = new DefaultHttpClient();
    HttpPost httppost = new HttpPost("http://www.hooni.net/ip.php");

    try {
        // Add your data
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
        nameValuePairs.add(new BasicNameValuePair("id", "hooni"));
        nameValuePairs.add(new BasicNameValuePair("passwd", "ok!"));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

        // Execute HTTP Post Request
        HttpResponse response = httpclient.execute(httppost);

    } catch (ClientProtocolException e) {
        // TODO Auto-generated catch block
    } catch (IOException e) {
        // TODO Auto-generated catch block
    }
}

[출처] http://stackoverflow.com/questions/2938502/sending-post-data-in-android


?
  • ?
    ㄴㄴ 2017.05.04 17:02
    NameValuePair는 안드로이드 스튜디오에서는 Deplicate 걸렸어요~ 다른걸로 대체하심이 ..

List of Articles
No. Category Subject Author Date Views
1093 Develop [android] 디바이스(시뮬레이터) hosts 파일 수정하기 hooni 2013.04.23 33732
1092 Develop [android] 딜레이를 구현하기 위한 꼼수 hooni 2016.11.24 4458
1091 Develop [android] 레이아웃 사이즈 변경 (동적; programmatically) hooni 2016.11.07 2793
1090 Develop [android] 만화 어플 소스코드 file hooni 2013.04.23 96727
1089 Develop [android] 멀티터치(Multi touch) 부분 구현 ㅋㅋ file hooni 2013.04.23 28249
1088 Develop [android] 버전 별 앱 알림 설정으로 이동하는 방법 file hooni 2016.11.28 6043
1087 Develop [android] 안드로이드 동영상 스트리밍 예제 2 hooni 2015.01.02 6268
1086 Develop [android] 안드로이드 앱 문서 샘플 - NCComix file hooni 2017.07.11 4058
1085 Develop [android] 안드로이드 어플 모음 ㅎㅎ secret hooni 2013.04.23 16340
1084 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
1083 Develop [android] 점심 해결 앱 소스 코드 ㅋㅋ file hooni 2013.04.23 81375
1082 PPT [Android] 제스처 자료.. file hooni 2013.05.28 52290
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 99 Next
/ 99