サーバーにデータを送信する簡単なチュートリアルを作成します
onCreate内にボタンを作成します
Button button = (Button) findViewById(R.id.send);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
postData();
}
});
これがデータを送信するための私のコードです
public void postData() {
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.www.www/hama/test123.php");
//This is the data to send
String MyName = "adil"; //any data to send
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("action", MyName));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
ResponseHandler<String> responseHandler = new BasicResponseHandler();
String response = httpclient.execute(httppost, responseHandler);
//This is the response from a php application
String reverseString = response;
Toast.makeText(this, "response" + reverseString, Toast.LENGTH_LONG).show();
} catch (ClientProtocolException e) {
Toast.makeText(this, "CPE response " + e.toString(), Toast.LENGTH_LONG).show();
// TODO Auto-generated catch block
} catch (IOException e) {
Toast.makeText(this, "IOE response " + e.toString(), Toast.LENGTH_LONG).show();
// TODO Auto-generated catch block
}
}//end postData()
ボタンを押そうとすると、ページを更新しようとしてもWebサーバーに結果が表示されません。ページが空白で結果がありません。
これが私のphpコードです
<?php
//code to reverse the string
$reversed = strrev($_POST["action"]);
echo $reversed;
?>
それを修正する方法は?