如何解决此问题org.json.JSONException:类型java.lang.String的值数据库无法转换为JSONObject

时间:2019-04-18 08:52:49

标签: java php android

我正在使用Volley库php mysql构建登录系统,而我正面临着这个问题

注册错误= 156 org.json.JSONException:类型为java.lang.String的值数据库无法转换为JSONObject

,当我检查成功插入的数据库用户详细信息

我已经尝试过这些方法

<?php
 $result = array();
 $allValues = array();
 $values = array();

 if (mysqli_query($connection, $sql)) {


         $values['status'] = 'true';
         $values['message'] = 'successful';
    } else {


         $values['status'] = 'false';
         $values['message'] = 'failed';
    }

$allValues[] = $values; 

 $result['result'] = $allValues;

 echo json_encode($result);



?>

更改我的Java代码

JSONArray jsonArray =response.getJSONArray("result");

 for(int i = 0 ; i<jsonArray.length(); i++){
       JSONObject jsonObject = jsonArray.getJSONObject(i);
      Log.i("jsonsingleImage",jsonObject.toString());

     String status =   jsonObject.getString("status");
     String message =    jsonObject.getString("message");



 JSONObject jo = new JSONObject(success.substring(1, success.length()-1));

 new JSONObject(success.substring(success.indexOf("{"), success.lastIndexOf("}") + 1));


我的Registration.php代码

<?php 

if ($_SERVER['REQUEST_METHOD'] == "POST") {

    require_once("connection.php");

    $first_name = $_POST['firstName'];

    $first_name = strip_tags($first_name);
    $first_name = ucfirst(strtolower($first_name)); // uppercase first letter
    $first_name = str_replace(' ', '', $first_name); // remove spaces


    $last_name = $_POST['lastName'];
    $last_name = strip_tags($last_name);
    $last_name = ucfirst(strtolower($last_name)); // uppercase first letter
        $last_name = str_replace(' ', '', $last_name); // remove spaces


    $email = $_POST['email'];

    $email = strip_tags($email);
    $email = str_replace(' ', '', $email); // remove spaces
    $password = $_POST['password'];
    $password = mysqli_real_escape_string($password);
    $password = strip_tags($password);

    $password = str_replace(' ', '', $password); // remove spaces
    $password = password_hash($_POST['password'], PASSWORD_BCRYPT);


    $sql = "INSERT INTO users (firstName, lastName, email, password) VALUES ('$first_name', '$last_name', '$email', '$password')";

    if (mysqli_query($connection, $sql)) {


        $result['success']  = "True";
        $result['message']  = "Successfully";

        echo json_encode($result);
        mysqli_close($connection);

    } else {



          $result['success']  = "False";
        $result['message']  = "Failed";

        echo json_encode($result);
        mysqli_close($connection);
    }




}

?>

SignActivity.java代码

        StringRequest stringRequest = new StringRequest(Request.Method.POST, URLS.SIGNUP_API, new Response.Listener<String>() {

            @Override
            public void onResponse(String response) {
                try {
                    JSONObject jsonObject = new JSONObject(response);
                    String success = jsonObject.getString("success");

                    if (success.equals("True")) {

                        Toast.makeText(SignupActivity.this, "Registration successfully", Toast.LENGTH_LONG).show();
                        Log.i("Registration ======= ", "Registration successfully");

                    }

                    }

                } catch (JSONException e) {
                    e.printStackTrace();
                    Toast.makeText(SignupActivity.this, "Registration Error= 156 " + e.toString(), Toast.LENGTH_LONG).show();

                    Log.i("Catch error 156  ======", e.toString());

                }
            }
        },
'''

1 个答案:

答案 0 :(得分:0)

请参考以下代码

这是Connection php文件

<?php
$conn = mysqli_connect("localhost", "root", "", "rfid") or die('connection error');
?>

这是登录php文件

<?php
if ($_SERVER['REQUEST_METHOD']=='POST') {
$parent_user = $_POST['username'];
$parent_pass = $_POST['password'];

include('connect.php');

$sql = "SELECT * FROM parent WHERE parent_user='$parent_user' AND 
parent_pass='$parent_pass' ";
$response = mysqli_query($conn, $sql);
if (mysqli_num_rows($response)==1) {
  while($row=mysqli_fetch_assoc($response)){
    $result["id"] = $row['parent_id'];
  }
$result["success"] = "1";
$result["message"] = "success";
  echo json_encode($result);
  mysqli_close($conn);
}
else{
  $result["success"] = "0";
  $result["message"] = "error";

  echo json_encode($result);
  mysqli_close($conn);
}
}
?>

这是登录课程

 private void LogMeIn() {
    final String Username = Utxt.getText().toString().trim();
    final String Password = Ptxt.getText().toString().trim();
    StringRequest SR = new StringRequest(Request.Method.POST, url, new 
    Response.Listener<String>() {
        @Override
        public void onResponse(String response) {
            try {
                JSONObject jsonObject=new JSONObject(response);
                Log.d("test", "onResponse: "+jsonObject.toString(4));
                String success=jsonObject.getString("success");
                Log.d("test", "onResponse: "+success);
                if (success.equals("1")){
                    String Id =jsonObject.getString("id");

                    session.createLoginSession(""+Id);
                    Intent intent=new Intent(LoginActivity.this,MainActivity.class);
                    intent.putExtra("Id",Id);
                    startActivity(intent);
                    Toast.makeText(LoginActivity.this, "******Welcome*******", 
                 Toast.LENGTH_SHORT).show();
                }
                else {
                    Toast.makeText(LoginActivity.this, "Invalid Username OR 
                    Password", Toast.LENGTH_SHORT).show();
                }
            } catch (JSONException e) {
                e.printStackTrace();
                Toast.makeText(LoginActivity.this, "Register 
            unsuccessful"+e.toString(), Toast.LENGTH_SHORT).show();

            }
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            Toast.makeText(getApplicationContext(), " "+error.toString(), 
      Toast.LENGTH_SHORT).show();
        }
    })
    {
        @Override
        protected Map<String, String> getParams() throws AuthFailureError {
            Map<String, String> params = new HashMap<>();
            params.put("username", Username);
            params.put("password", Password);
            return params;
        }

    };
    RequestQueue RQ = Volley.newRequestQueue(LoginActivity.this);
    RQ.add(SR);

}