phpページへのPOSTを実行するクラスがあります。このページは、投稿されたデータに対して何らかのアクションを実行し、結果(OK、KOなど)を返す必要があります。結果をPHPで返送するにはどうすればよいですか?また、Androidで結果を使用するにはどうすればよいですか?
Android側では、これを持っています。これはデータを投稿します。
public int postData(String id, String webrispid, String userid) {
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.server.com/postpage.php");
int responseCode = 0;
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("id", id));
nameValuePairs.add(new BasicNameValuePair("user", userid));
nameValuePairs.add(new BasicNameValuePair("webrisid", webrispid));
try {
nameValuePairs.add(new BasicNameValuePair("token",AeSimpleSHA1.SHA1(userid) ));
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
responseCode = response.getStatusLine().getStatusCode();
System.out.println(response);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
} catch (IOException e) {
// TODO Auto-generated catch block
}
return responseCode;
}
実際、postpage.phpは次のようになります。
<?php
if ( isset($_POST['user']) ) {
// try to store the data posted
//if data is stored return "ok"
// else return "ko"
} else {
// error
}
?>
したがって、Android側では、同じデータの送信を停止し、残りのデータの処理を開始して、最終的にページに送信する必要があります...