java.net.ConnectException:无法连接到/10.0.2.2:443

时间:2020-08-25 11:52:16

标签: java android localhost httpurlconnection

我正在开发需要用户身份验证的android应用。我正在使用localhost phpadmin进行服务器和数据库连接。到目前为止,该应用程序具有1个登录活动,该活动将导入php URL以连接到localhost。如果一切正常,则该应用程序应显示一个alertDialog,表明登录成功。但是,每当我尝试运行该应用程序时,当我单击登录时,它都会显示一个空的alertDialog,而AndroidStudio调试器将显示此错误:java.net.ConnectException:Failed to connect to /10.0.2.2:443

这是MainActivity的代码:


import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.EditText;

public class MainActivity extends AppCompatActivity {
EditText UsernameEt , PasswordEt;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        UsernameEt= (EditText)findViewById(R.id.editTextTextPersonName);
        PasswordEt= (EditText)findViewById(R.id.editTextTextPassword);

    }
    public void OnLogin(View view) {
        String username= UsernameEt.getText().toString();
        String password= PasswordEt.getText().toString();
        BackroundWorker backroundWorker=new BackroundWorker(this);
        String type= "login";
        backroundWorker.execute(type,username,password);
    }
} 

这是BackroundWorker类的代码:

package com.android.example.meetmev0;

import android.app.AlertDialog;
import android.content.Context;
import android.os.AsyncTask;
import android.util.Log;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLEncoder;

import javax.net.ssl.HttpsURLConnection;

public class BackroundWorker extends AsyncTask<String,Void,String> {
Context context;
AlertDialog alertDialog;
public BackroundWorker ( Context ctx) {
    context=ctx;
}
    @Override
    protected String doInBackground(String... voids) {
    String type = voids[0];
    String login_url= "https://10.0.2.2/MeetLogin.php";
    if(type.equals("login"))
    {
        String test="so far so good";
        try {
            String username = voids[1];
            String password = voids[2];
            URL url= new URL(login_url);
            HttpsURLConnection httpsURLConnection = (HttpsURLConnection)url.openConnection();
            httpsURLConnection.setRequestMethod("POST");
            httpsURLConnection.setDoOutput(true);
            httpsURLConnection.setDoInput(true);
            OutputStream outputStream= httpsURLConnection.getOutputStream();
            test= " still good";
            BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(outputStream, "UTF-8"));
            String post_data= URLEncoder.encode("username ", "UTF-8")+"="+URLEncoder.encode(username , "UTF-8")+"&"
                    +URLEncoder.encode("password", "UTF-8")+"="+URLEncoder.encode(password , "UTF-8");
            bufferedWriter.write(post_data);
            bufferedWriter.flush();
            bufferedWriter.close();
            outputStream.close();
            InputStream inputStream = httpsURLConnection.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();
            httpsURLConnection.disconnect();
            Log.v("Activity test: ", result);
            return result;
        } 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();
    }

    @Override
    protected void onProgressUpdate(Void... values) {
        super.onProgressUpdate(values);
    }
}

使用断点,我发现此行 OutputStream outputStream= httpsURLConnection.getOutputStream();引发了异常。

这是我的AndroidManifest文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.example.meetmev0">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:usesCleartextTraffic="true">

        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我尝试添加端口80、8080和8888,但这没有用。将10.0.2.2交换到localhost或我的本地ip也不起作用。

1 个答案:

答案 0 :(得分:0)

我将https更改为http:

String login_url= "https://10.0.2.2/MeetLogin.php" String login_url= "http://10.0.2.2/MeetLogin.php"

HttpsURLConnection httpsURLConnection = (HttpsURLConnection)url.openConnection();HttpURLConnection httpsURLConnection = (HttpURLConnection)url.openConnection();

现在它可以正常工作了。