如何在json中处理登录成功?

时间:2018-01-10 11:59:55

标签: java android json

我正在尝试使用post方法在JSON的帮助下在Android中实现登录和注册表单。当我注册并输入详细信息时,它成功注册并且数据已在我的本地主机服务器中显示,当我登录时输入错误的用户名和密码,它在toast中显示错误的详细信息并输入正确的详细信息显示在toast中登录成功,但我想要我输入正确的细节,它将进入另一项活动。并输入错误的详细信息仅显示吐司。这是代码: -

MainActivity.java

public class MainActivity extends Activity {
    public static HashMap<Sound, MediaPlayer> SOUND_MAP=
            new HashMap<Sound, MediaPlayer>();
    public static int userScore= 0, computerScore=0,
            buddyBoxId = 1, computerBoxId = 1;
    public static Context CTX;
    Button play;
    private static final String TAG = "LoginActivity";
    String URL = "http://10.0.2.2/test_android/index.php";
    JSONParser jsonParser=new JSONParser();
    ProgressDialog progressDialog;
    TextView register_caption;
    AdView adView = null;
    private AdView mAdView;
    EditText username, password;
    Button btnSignIn, btnRegister;
    ImageView fb;
    int i=0;
    private AdRequest adRequest;
    InterstitialAd mInterstitialAd;

    static MediaPlayer media;
    static Handler mediaHandler;
    public static int stat=0, totTurn = 0, maxEnd = 100;
    public static SharedPreferences configs;
    public static SharedPreferences.Editor configuration;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);

        username = (EditText) findViewById(R.id.email);
        password = (EditText)findViewById(R.id.passwordd);
        btnSignIn = (Button) findViewById(R.id.play);
        register_caption = (TextView) findViewById(R.id.register_caption);
        fb = (ImageButton) findViewById(R.id.btnfb);
        progressDialog = new ProgressDialog(this);
        progressDialog.setCancelable(false);



        btnSignIn.setOnClickListener(new View.OnClickListener() {
                                         @Override
                                         public void onClick(View view) {
                                             AttemptLogin attemptLogin = new AttemptLogin();
                                             attemptLogin.execute(username.getText().toString(), password.getText().toString(), "");
                                         }
                                     });

        register_caption.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Intent in = new Intent(MainActivity.this,Registration.class);
                startActivity(in);


            }
        });

        CTX = getApplicationContext();
        configs = CTX. getSharedPreferences("snake_n_ladder", 0);
        configuration = configs.edit();
        loadConfig();
        loadMedia();
    }
    private class AttemptLogin extends AsyncTask<String, String, JSONObject> {

        @Override

        protected void onPreExecute() {

            super.onPreExecute();

        }

        @Override

        protected JSONObject doInBackground(String... args) {


            String email = args[2];
            String password = args[1];
            String name = args[0];

            ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
            params.add(new BasicNameValuePair("username", name));
            params.add(new BasicNameValuePair("password", password));
            if (email.length() > 0)
                params.add(new BasicNameValuePair("email", email));

            JSONObject json = jsonParser.makeHttpRequest(URL, "POST", params);


            return json;

        }

        protected void onPostExecute(JSONObject result) {

            // dismiss the dialog once product deleted
            //Toast.makeText(getApplicationContext(),result,Toast.LENGTH_LONG).show();
            try {
                if (result != null) {
                    Toast.makeText(getApplicationContext(), result.getString("message"), Toast.LENGTH_LONG).show();
                } else {
                    Toast.makeText(getApplicationContext(), "Unable to retrieve any data from server", Toast.LENGTH_LONG).show();

                }
            } catch (JSONException e) {
                e.printStackTrace();

            }


        }

    }

JsonParser.java

public class JSONParser {


    static InputStream is = null;
    static JSONObject jObj = null;
    static JSONArray jArr = null;
    static String json = "";
    static String error = "";

    // constructor
    public JSONParser() {

    }

    // function get json from url
    // by making HTTP POST or GET mehtod
    public JSONObject makeHttpRequest(String url, String method,
                                      ArrayList<NameValuePair> params) {

        // Making HTTP request
        try {

            // check for request method
            if(method.equals("POST")){
                // request method is POST
                // defaultHttpClient
                HttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost(url);
                httpPost.setEntity(new UrlEncodedFormEntity(params));
                try {
                    Log.e("API123", " " +convertStreamToString(httpPost.getEntity().getContent()));
                    Log.e("API123",httpPost.getURI().toString());
                } catch (Exception e) {
                    e.printStackTrace();
                }

                HttpResponse httpResponse = httpClient.execute(httpPost);
                Log.e("API123",""+httpResponse.getStatusLine().getStatusCode());
                error= String.valueOf(httpResponse.getStatusLine().getStatusCode());
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();

            }else if(method.equals("GET")){
                // request method is GET
                DefaultHttpClient httpClient = new DefaultHttpClient();
                String paramString = URLEncodedUtils.format(params, "utf-8");
                url += "?" + paramString;
                HttpGet httpGet = new HttpGet(url);

                HttpResponse httpResponse = httpClient.execute(httpGet);
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();
            }

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
            Log.d("API123",json);
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }

        // try parse the string to a JSON object
        try {
            jObj = new JSONObject(json);
            jObj.put("error_code",error);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }

        // return JSON String
        return jObj;

    }

    private String convertStreamToString(InputStream is) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
        StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            sb.append(line);
        }
        is.close();
        return sb.toString();
    }

}

1 个答案:

答案 0 :(得分:0)

    protected void onPostExecute(JSONObject result) {

 try {
if (result != null) 
{
        if(result.getString("message").equals("Successfully logged in"))
        {
           Intent intent = new Intent(ThisActivity.this,NewActivity.class);
            startActivity(intent);
            finish();
        }
        else
        {
        Toast.makeText(this,"Invalid credentials",Toast.LENGTH_LONG).show();
        } 
} 
else 
{
   Toast.makeText(getApplicationContext(), "Unable to retrieve any data from 
server", Toast.LENGTH_LONG).show();
}
 } catch (JSONException e) {
            e.printStackTrace();
        }
    }