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