Ошибка параметров неопределена - PullRequest
0 голосов
/ 08 июня 2018

Основное действие объявляет тип переменной, имя пользователя и пароль

    UsernameEt = (EditText)findViewById(R.id.et_username);
    PasswordEt = (EditText)findViewById(R.id.et_password);

    String username = UsernameEt.getText().toString();
    String password = PasswordEt.getText().toString();
    String type = "login";

    BackgroundWorker backgroundWorker = new BackgroundWorker(this);
    backgroundWorker.execute(type, username, password);

, затем BackgroundWorker.java выполнит и использует тип значений, имя пользователя и пароль, объявив params [значение] ...

@Override
protected Void doInBackground(String[] voids) {
    String type = this.params[0];

    String login_url = "http://10.0.2.2/ITSP/login.php";
    if(type.equals("login")){
        try {
            String username = this.params[1];
            String password = this.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("")
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return null;

Но почему "params [0]" не определен в этом коде?Я использую Android Studio версии 3.1.3.Должен ли я заменить параметры?что я должен использовать вместо этого?

1 Ответ

0 голосов
/ 08 июня 2018

попробуйте этот способ получить значение параметра

    @Override
protected Void doInBackground(String[] voids) {
    String type = voids[0];

    String login_url = "http://10.0.2.2/ITSP/login.php";
    if(type.equals("login")){
        try {
            String username = voids[1];
            String password =voids[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("")
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return null;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...