这里的httpPost()的Java类,
public String getXmlFromUrl_NewRegistration(String url,
String username, String firstname, String lastname, String email,
String password) {
String json = null;
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://aleedex.biz/game/users.php?action=new");
String postParameter = "username=" + username + "&firstname="
+ firstname + "&lastname=" + lastname + "&email=" + email
+ "&password=" + password;
try {
httpPost.setEntity(new StringEntity(postParameter));
} catch (Exception e) {
}
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
json = EntityUtils.toString(httpEntity);
} catch (UnsupportedEncodingException e) {
} catch (ClientProtocolException e) {
} catch (IOException e) {
json = null;
}
Log.d("json", json);
return json;
}
此外,在HTTPGET()使用相同的参数,如用户名,名字,姓氏,电子邮件,密码,如何与该链路上相同的参数通过注册HTTPGET用户() http://aleedex.biz/game/users.php?action=new