Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 자바스크립트
- UML
- 자동 생성
- 안드로이드 푸시
- mysql
- curl
- 설치
- html5
- C# IO
- javascript
- WebView
- 안드로이드
- roundcube
- not working
- FCM
- android 효과음
- Android
- 안드로이드 푸쉬
- Mail Server
- 폼메일
- xe
- php 취약점
- chart.js
- soundpool
- 안드로이드 gcm
- 우분투
- dovecot
- php 시큐어코딩
- C#
- PHP
Archives
- Today
- Total
목록안드로이드 service에서 포스트로 데이터 주고 받기 httppost 통신 (1)
그러냐
안드로이드 service에서 포스트로 데이터 주고 받기 httppost 통신
public void postData() { try { httppost = new HttpPost(URL+"/lginsert.php?req=lgins&hpnum="+PhoneNumber+"&bcname="+bcname); response = httpclient.execute(httppost); bufreader = new BufferedReader( new InputStreamReader(response.getEntity().getContent(), "utf-8")); line = null; result = ""; while ((line = bufreader.readLine()) != null) { result += line; } Log.d("22", result); } catch (Exception e..
android
2016. 1. 28. 10:58