java - 为什么我的alertDialog.setMessage() 得到空值?

标签 java php android android-studio

我是开发 Android 应用程序的初学者。我不知道为什么我的 alertDialog 框始终显示 null 值。该代码用于通过检查我的数据库上的数据来登录。将不胜感激任何帮助。

我已将 MySql 端口从 3306 更改为 3307,因为 3306 已被阻止。

public class BackgroundWorker extends AsyncTask<String,Void,String> {
    Context context;
    AlertDialog alertDialog;
    BackgroundWorker (Context ctx) {
        context = ctx;
    }
    @Override
    protected String doInBackground(String... params) {
        String type = params[0];
        String login_url = "http://192.168.254.106/login.php";
        if(type.equals("login")) {
            try {
                String user_name = params[1];
                String password = params[2];
                URL url = new URL(login_url);
                HttpURLConnection httpURLConnection = (HttpURLConnection)url.openConnection();
                httpURLConnection.setRequestMethod("POST");
                httpURLConnection.setDoOutput(true);
                httpURLConnection.setDoInput(true);
                OutputStream outputStream = httpURLConnection.getOutputStream();
                BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(outputStream, "UTF-8"));
                String post_data = URLEncoder.encode("user_name","UTF-8")+"="+URLEncoder.encode(user_name,"UTF-8")+"&"
                        +URLEncoder.encode("password","UTF-8")+"="+URLEncoder.encode(password,"UTF-8");
                bufferedWriter.write(post_data);
                bufferedWriter.flush();
                bufferedWriter.close();
                outputStream.close();
                InputStream inputStream = httpURLConnection.getInputStream();
                BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream,"iso-8859-1"));
                String result="";
                String line="";
                while((line = bufferedReader.readLine())!= null) {
                    result += line;
                }
                bufferedReader.close();
                inputStream.close();
                httpURLConnection.disconnect();
                return result;
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return null;
    }

    @Override
    protected void onPreExecute() {
        alertDialog = new AlertDialog.Builder(context).create();
        alertDialog.setTitle("Login Status");
    }

    @Override
    protected void onPostExecute(String result) {
        alertDialog.setMessage(result);
        alertDialog.show();
    }

}

这是login.php

<?php
require "connection.php";
$user_name = $_POST["user_name"];
$user_pass = $_POST["password"];
$mysql_qry = "select * from account_profiles where userName like '$user_name' and passWord like '$user_pass';";
$result = mysqli_query($conn, $mysql_qry);
if(mysqli_num_rows($result) > 0) {
echo "Login Success";
}
else {
echo "Login Failed";
}
?>

最佳答案

在类构造函数中处理 AlertDialog 的实例化,而不是在 onPreExecute 中,这没有意义,并且会解决您的问题。

BackgroundWorker (Context context ) {
    alertDialog = new AlertDialog.Builder(context).create();
}

现在您还可以删除 Context 全局变量。

关于java - 为什么我的alertDialog.setMessage() 得到空值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57737893/

相关文章:

java - 使用 AsyncTask 时应该如何处理 HTTP 响应码?

php - 一段时间后如何扣几张信用卡?

android - 无法在 xml 布局中实例化自定义 View

java - 在 QSH 命令中导入属性文件 - iseries

java - 如何控制(启用/禁用)Google Place 自动完成 fragment 编辑功能

java - 当从启动类之外的 ArrayList<Area> 访问区域的边界时,接收到的矩形不正确

php - 通过克隆将名称与数组一起发布

php - 在这种情况下(PHP/MySQL)可以不清理用户输入吗?

android - 更改 TabHost 内的 View (一个 Activity ,多个 View )

android - 使用 Conceal API 加密