得到一个JSONException:在0的字符0输入结束

时间:2015-11-18 08:34:57

标签: java android json android-volley

我正在尝试按照在线教程创建此登录,但是我收到此错误。我在localhost上尝试了这个,但它在服务器上不起作用。有谁能告诉我,我的错误是什么。这是我的代码:

private void checkLogin(final String email, final String password) {
        // Tag used to cancel the request
        String tag_string_req = "req_login";

        pDialog.setMessage("Logging in ...");
        showDialog();

        StringRequest strReq = new StringRequest(Method.POST,
                AppConfig.URL_LOGIN, new Response.Listener<String>() {

            @Override
            public void onResponse(String response) {
                Log.d(TAG, "Login Response: " + response.toString());
                hideDialog();

                try {
                    JSONObject jObj = new JSONObject(response);
                    boolean error = jObj.getBoolean("error");

                    // Check for error node in json
                    if (!error) {
                        // user successfully logged in
                        // Create login session
                        session.setLogin(true);

                        // Now store the user in SQLite
                        String uid = jObj.getString("uid");

                        JSONObject user = jObj.getJSONObject("user");
                        String name = user.getString("name");
                        String email = user.getString("email");
                        String created_at = user
                                .getString("created_at");

                        // Inserting row in users table
                        db.addUser(name, email, uid, created_at);

                        // Launch main activity
                        Intent intent = new Intent(LoginActivity.this,
                                MainActivity.class);
                        startActivity(intent);
                        finish();
                    } else {
                        // Error in login. Get the error message
                        String errorMsg = jObj.getString("error_msg");
                        Toast.makeText(getApplicationContext(),
                                errorMsg, Toast.LENGTH_LONG).show();
                    }
                } catch (JSONException e) {
                    // JSON error
                    e.printStackTrace();
                    Toast.makeText(getApplicationContext(), "Json error: " + e.getMessage(), Toast.LENGTH_LONG).show();
                }

            }

logcat

2 个答案:

答案 0 :(得分:0)

这意味着响应不是JSON格式,或者客户端根本没有得到任何响应。尝试以下步骤:--  1.在使用应用程序中的URL之前,如果您收到了所需的响应,请在Web浏览器中进行检查。如果存在任何服务器端错误,它将显示在Web浏览器中。 2.现在使用JSON验证器检查服务端响应,以检查响应是否是有效的JSON 3.如果您的服务器端使用logcat或toast message打印您的响应并检查响应。

答案 1 :(得分:0)

我刚刚找到了解决问题的方法。它是导致问题的DB_Functions.php文件中的代码。我已经改变了一些代码然后它现在正常工作。非常感谢你们的帮助。我还附上了代码以防有人遇到同样的问题。祝你好运

public function getUserByEmailAndPassword($email, $password) {
   $result = mysqli_query($this->conn,"SELECT * FROM users WHERE email = '$email'") or die(mysqli_connect_errno());

// check for result

   $no_of_rows = mysqli_num_rows($result);

   if ($no_of_rows > 0) {
      $result = mysqli_fetch_array($result);
      $salt = $result['salt'];
      $encrypted_password = $result['encrypted_password'];
      $hash = $this->checkhashSSHA($salt, $password);