티스토리 뷰
try {
HttpClient client = new DefaultHttpClient();
String postURL = id.url + "/android_memo_insert.jsp";
HttpPost post = new HttpPost(postURL);
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("name", id.id));
params.add(new BasicNameValuePair("title", title.getText().toString()));
params.add(new BasicNameValuePair("content", content.getText().toString()));
UrlEncodedFormEntity ent = new UrlEncodedFormEntity(params,HTTP.UTF_8);
post.setEntity(ent);
HttpResponse responsePOST = client.execute(post);
HttpEntity resEntity = responsePOST.getEntity();
if (resEntity != null) {
Log.i("RESPONSE", EntityUtils.toString(resEntity));
}
} catch (Exception e) {
e.printStackTrace();
}
'개발 > 개발 자료' 카테고리의 다른 글
(jsp) 현재 시간 받아오는 메서드 (0) | 2013.12.10 |
---|---|
(HTML,JSP) 링크 태그 색 바꾸기 or 링크 밑줄 없애기 - jsp, htm (0) | 2013.12.10 |
(html) 달력에서 선택해서 날짜 입력하는 소스 (0) | 2013.12.04 |
[Android] 웹뷰 이미지 스크린에 꽉 차게 보여주기 (0) | 2013.11.20 |
[Android] 테블릿 해상도 대응 (2) | 2013.11.20 |
댓글