簡體   English   中英

Android登錄身份驗證失敗

[英]Android Login Authentication failed

我的xampp服務器上有我的數據庫,下面提供了我的活動和php文件。 此頁面中的問題是,當我運行應用程序時,它總是會引發異常。 它總是顯示我的最后一條消息,即“那里存在一些問題”。 我的提交日期即將到期。

這是我的活動文件

public class AdminLoginActivity extends Activity {


  TextView username, password, message;
  Button SignIn;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_admin_login);
    StrictMode.enableDefaults();

    username = (TextView) findViewById(R.id.adminusername);
    password = (TextView) findViewById(R.id.adminpassword);
    message = (TextView) findViewById(R.id.textView5);
    SignIn = (Button) findViewById(R.id.adminloginbtn);

    SignIn.setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            checkAdminData();

        }
    });
}

public void checkAdminData()
{

    InputStream isr = null;
    HttpClient httpclient = new DefaultHttpClient();
    HttpPost httppost = new HttpPost("http://localhost:1234/adminlogin.php");

    try
    {
        // Add your data
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>                      (2);
        nameValuePairs.add(new BasicNameValuePair("username",                 username.getText().toString()));
        nameValuePairs.add(new BasicNameValuePair("password",  password.getText().toString()));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
        HttpResponse response = httpclient.execute(httppost);
        HttpEntity entity = response.getEntity();
        isr = entity.getContent();

    }
    catch (ClientProtocolException e)
    {
        Log.e("log_tag", "Error in Http connection " + e.toString());
        message.setText("couldn't connect to database");
    }
    catch (IOException e)
    {

    }

    String responseText = null;
    try
    {
        String res = isr.toString();
      //  res = res.replaceAll("\\s+", "");
        if (res.equals("1")) {
            Intent i = new Intent(this, AdminMainPage.class);
            startActivity(i);
                  }
        else{

            message.setText("Username or Password incorrect");
        }
    }
    catch (Exception e)
    {

        Log.e("log_tag", "Sorry!! Incorrect Username or Password " + e.toString());
        message.setText("Some problem is there");
     }
   }
 }

PHP文件:

     <?php
      $hostname_localhost ="localhost";
      $database_localhost ="sibuilder";
      $username_localhost ="root";
      $password_localhost ="";
      $localhost =          mysql_connect($hostname_localhost,$username_localhost,$password_localhost)
      or
      trigger_error(mysql_error(),E_USER_ERROR);

      mysql_select_db($database_localhost, $localhost);

      $username = $_POST['username'];
      $password = $_POST['password'];
      $query_search = "select * from login l, admin a where a.username = '".$username."' AND l.password = '".$password. "'";
      $query_exec = mysql_query($query_search) or die(mysql_error());
      $rows = mysql_num_rows($query_exec);
      //echo $rows;
      if($rows == 0) { 
        echo 0; 
       }
       else  {
       echo 1; 
        }
         ?>

如果您想使用PHP腳本而不是json格式,可以參考以下問題
Android:AsyncTask發出HTTP GET請求?
用Android發出HTTP請求
處理響應。 建議使用AsyncTask。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM