我有一个Android应用程序,我需要让用户登录。 我有登录按钮,当用户按下按钮时,我调用asyncTask将用户数据发布到其余服务。我能够调用该方法,但是当我调试服务器端时,我看到参数为null,即使它作为json对象发送到服务器。
Android客户端代码:
class LoginByEmail extends AsyncTask<String,Void,String> {
@Override
protected String doInBackground(String... strings) {
String url = strings[0];
String respStr = "";
String userEmail = strings[1];
String userPassword = strings[2];
HttpResponse response;
JSONObject data = new JSONObject();
try{
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(url);
post.setHeader("Accept","application/json");
post.setHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF8");
data.put("email",userEmail);
data.put("password",userPassword);
StringEntity se = new StringEntity(data.toString());
post.setEntity(se);
response = client.execute(post);
respStr = EntityUtils.toString(response.getEntity());
}catch (Exception e){
respStr = e.getMessage().toString();
}
return respStr;
}
}
服务器端代码
@Path("/emailLogin")
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces(MediaType.APPLICATION_JSON)
public String emailLogin(@FormParam("email") String email, @FormParam("password") String password)
{
String user = sm.loginByEmail(email,password);
return user;
}
我使用glassfish作为我的webhost并将其部署到我的其余web服务,emailLogin函数来自其余的webservice。
我不明白为什么电子邮件和密码参数会转为null。
注意: userEmail和userPassword变量不为空,它们正确获取其值
任何想法?
编辑:变量值:
答案 0 :(得分:1)
尝试使用nameValuePairs而不是JSONOBject,这应该可行:
List<NameValuePair> data = new ArrayList<NameValuePair>();
data.add(new BasicNameValuePair("email",userEmail));
data.add(new BasicNameValuePair("password",userPassword));
post.setEntity(new UrlEncodedFormEntity(data));
编辑:
我建议您将此项目用作库。
https://github.com/matessoftwaresolutions/AndroidHttpRestService
它使您轻松处理api,控制网络问题等。
你可以在那里找到一个使用样本。
你只需要:
构建您的网址 告诉组件在POST模式下执行 构建你的JSON
祝你好运!