私はアンドロイドを初めて使います.EdiTextにデータをサーバーデータベーステーブルに投稿する必要があります.データはphpページに送信されます.SQLクエリはそのページにあります.みんな助けてください.私はこれを行う方法がわかりません. .お願いします...
質問する
475 次
1 に答える
0
テキスト データを PHP スクリプトに送信する例を次に示します。
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("text", text));
nameValuePairs.add(new BasicNameValuePair("text2", text2)); //you can add as many you need
try {
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://yourserver.com/script.php");
httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpClient.execute(httpPost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
}catch (Exception e) {
// TODO: handle exception
Log.e("log_tag", e.toString());
return false;
//Toast.makeText(this, e.toString(), Toast.LENGTH_LONG).show();
}
于 2012-05-02T08:13:57.747 に答える