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
- Mail Server
- xe
- android 효과음
- 우분투
- chart.js
- html5
- php 시큐어코딩
- PHP
- mysql
- javascript
- UML
- soundpool
- php 취약점
- not working
- 안드로이드 푸쉬
- Android
- FCM
- 자동 생성
- 안드로이드
- WebView
- 설치
- C# IO
- roundcube
- 안드로이드 푸시
- 안드로이드 gcm
- C#
- 자바스크립트
- dovecot
- curl
- 폼메일
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