Android没有连接到数据库来检查用户名和密码

Posted

技术标签:

【中文标题】Android没有连接到数据库来检查用户名和密码【英文标题】:Android is not connecting to database to check the username and password 【发布时间】:2019-03-04 19:37:32 【问题描述】:

我在一个教程视频中看到了这段代码,在该视频中应用运行良好,甚至显示“登录成功”toast。

但是当我尝试复制它时,即使我在数据库中输入了正确的用户名和密码,它也无法正常工作。 (我在 XAMPP 上尝试了用户的 LAN IP 和 Wi-Fi IP,还尝试在 000webhost.com 上托管 php 脚本,但仍然无法使用任何方法)

我的安卓代码:

package com.example.devarsh.googlemapsbustracker;


import android.app.Dialog;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import com.android.volley.AuthFailureError;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GoogleApiAvailability;

import java.util.HashMap;
import java.util.Map;

public class MainActivity extends AppCompatActivity 

    private static final String TAG = "MainActivity";
    private static final int ERROR_DIALOG_REQUEST = 9001;
    private EditText User_name, Pass_word;
    private Button btnlogin;
    private static String URL_LOGIN = 
    "http://192.168.50.127/Android/login.php";


    //vars
    EditText enroll;


    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        btnlogin = findViewById(R.id.button2);
        User_name = findViewById(R.id.username);
        Pass_word = findViewById(R.id.password);

        btnlogin.setOnClickListener(new View.OnClickListener() 
            @Override
            public void onClick(View view) 
                Login();
            
        );


        isServicesOK();
    

    private void Login()

        String URL = 
    "imagebustracker.000webhostapp.com/Android/parul/login.php";
        RequestQueue requestQueue = Volley.newRequestQueue(this);
        StringRequest stringRequest = new StringRequest(Request.Method.POST, URL, new Response.Listener<String>() 
            @Override
            public void onResponse(String response) 

                if(response.trim().equals("success"))
                    Toast.makeText(getApplicationContext(), "Login Successfull", Toast.LENGTH_LONG).show();
                    Intent intent = new Intent(getApplicationContext(), Selection_Activity.class);
                    startActivity(intent);
                else
                    Toast.makeText(getApplicationContext(), "Login Unsuccessfull", Toast.LENGTH_LONG).show();
                

            
        , new Response.ErrorListener() 
            @Override
            public void onErrorResponse(VolleyError error) 
                Toast.makeText(getApplicationContext(), "Login Unsuccessfull", Toast.LENGTH_LONG).show();
            
        ) 
            @Override
            protected Map<String, String> getParams() throws AuthFailureError 

                Map<String, String> params = new HashMap<>();
                params.put("UserName", User_name.getText().toString().trim());
                params.put("PassWord", Pass_word.getText().toString().trim());

                return params;
            
        ;

        requestQueue.add(stringRequest);

    


    public void isServicesOK() 
        Log.d(TAG, "isServicesOK: checking google services version");

        int available = GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(this);

        if(available == ConnectionResult.SUCCESS)
            //everything is fine and user can make map request
            Log.d(TAG, "isServicesOK: Google Play Services is working");
        
        else if(GoogleApiAvailability.getInstance().isUserResolvableError(available))
            //there is an error but we can fix it
            Log.d(TAG, "isServicesOK: An error is there but we can fix it");
            Dialog dialog = GoogleApiAvailability.getInstance().getErrorDialog(this, available, ERROR_DIALOG_REQUEST);
            dialog.show();
        else
            Toast.makeText(this, "We cant make maps request", Toast.LENGTH_SHORT).show();
        
    

在我刚刚添加的 Android 代码中,如果 response.trim().equals("success") 则它将启动一个新活动。但它一直在烤“登录失败”。

PHP 脚本:


<?php
$conn =
 mysqli_connect("localhost","id7263189_root","dev@1234"
 ,"id7263189_logintb");
    mysqli_query($conn, "SET NAMES 'utf8'");

$username = $_POST["UserName"];
$password = $_POST["PassWord"];

$query = 'SELECT id FROM logintb WHERE username = "'.$username.'" and 
password = "'.$password.'"';
$result = mysqli_query($conn,$query) or die('error: ' .mysql_error());

if(mysqli_num_rows($result) == 1)

    echo "success";
else
    echo "error";



?>

目前我正在使用 XAMPP 连接到 myphpadmin。但如果我需要,我会将其托管到 000webhost 以检查在互联网上使用真实设备。

【问题讨论】:

我建议您做的第一件事是在您的 PHP 代码中硬编码用户名和密码,运行 android 应用程序,进行调用并查看它是否返回成功结果。这将缩小问题范围,看看是 Android 端还是 PHP 端的问题。 我该怎么做?你能用一个例子解释一下我的代码吗? 所以我已经通过放弃 php 并转移到 Google Firebase 解决了这个问题,但无论如何感谢您的帮助 【参考方案1】:

首先,测试您的 PHP 脚本。因此,像这样对用户名和密码变量进行硬编码

$username = "myUsername"; 
$password = "myPassword";

确保 myUsername 和 myPassword 是您的数据库中实际存在的数据。从那里,在您的网络浏览器中调用相同的 URL 并查看响应。是成功还是错误。

另一件值得注意的事情是在您拨打电话时阅读 Android 应用中的响应代码。响应代码将清楚地确定它是否甚至与服务通信。但在你的情况下,我建议你打印出 Volleyerror。 此外,请向我提供您用于本教程的链接。有时对代码有双重观察是件好事。

正如您所提到的,您遇到了“登录失败”toast,这意味着它遇到了 onErrorResponse 函数。因此,将函数更改为以下内容:-

new Response.ErrorListener() 
        @Override
        public void onErrorResponse(VolleyError error) 
            Toast.makeText(getApplicationContext(), "Login Unsuccessfull", Toast.LENGTH_LONG).show();
            Log.e(TAG, error); //or
            System.println("VolleyError Start: " + error + " : End VolleyError");
         

请分享错误。如果您有任何问题,请告诉我。

【讨论】:

这里是链接link,是的,我尝试了你的方法,它奏效了我使用了$username = "test" and $password = "test123",它在我的数据库中,当我运行该php脚本时它工作并说成功但是当我尝试在android studio中它说再次登录不成功 你需要和我分享错误;因此,请在接近尾声时再次查看答案。 感谢您的帮助,我发现错误是 000webhosting 错误,但是当我在 XAMPP localhost 服务器上尝试并使用模拟器时,它工作正常。特别感谢 Nero 在这个话题上帮助我 非常欢迎您,很高兴我能提供帮助。如果您需要任何其他帮助,请联系我

以上是关于Android没有连接到数据库来检查用户名和密码的主要内容,如果未能解决你的问题,请参考以下文章

phpMyAdmin 尝试连接到 MySQL 服务器,但服务器拒绝连接。您应该检查配置文件中的主机用户名和密码

将 USB 设备连接到 Android 模拟器?

每次Access连接到SQL Server而不使用Windows身份验证时,如何避免手动输入登录名和密码

由没有密码的用户连接到 Postgres DB

连接到远程 Ubuntu 18.04 服务器,只提供服务器名、用户名和密码来设置 PostgreSQL 数据库

如何通过编程设置用户名和密码来连接到 ActiveMQ 服务器?