如何在android中使用JSON验证用户名和密码

时间:2012-09-20 05:51:04

标签: android json

我有一个Android应用程序,它使用登录页面来访问一些统计数据。然而,用户名和密码在应用程序中是硬编码的。我想将此应用程序与erlang服务器链接,该服务器将获取用户名和密码进行身份验证,并且需要JSON请求。我是初学者,我想知道如何将我的用户名和密码发送到服务器URL(172.16.11.70:81/prime/yaws/login.yaws)进行身份验证并重新获得服务器响应。 suucess或失败。一步步。谢谢。

1 个答案:

答案 0 :(得分:0)

更新

我有以下代码来匹配用户名和密码。它给出了上面这样的“响应” - > {“state”:“bla bla blaa”,“reason”:“bla bla blaa”}

HttpClient client = new DefaultHttpClient();
                HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); //Timeout Limit
                HttpResponse response;
                JSONObject json = new JSONObject();
                try{
                    HttpPost post = new HttpPost(URL);
                    post.setHeader("Content-type", "application/json");
                    json.put("username", userName);
                    json.put("password", password);
                    StringEntity se = new StringEntity( json.toString());  
                    Log.v("json_text", json.toString());
                    se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
                    post.setEntity(se);
                    response = client.execute(post);
                    /*Checking response */
                    if(response!=null){
                        String temp = EntityUtils.toString(response.getEntity()); //Get the data in the entity
                        Log.v("response", temp);
                }}
                catch(Exception e){
                    e.printStackTrace();
                    //createDialog("Error", "Cannot Estabilish Connection");
                }

我想将此“响应”转换为java数组。请给我一个提示。