ارسال متن فارسی به سرور:


List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("Comment", "متن مورد نظر"));
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://Address/page.php");
httpPost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));
httpClient.execute(httpPost);