简体   繁体   English

我的应用无法发送GET,OkHttp

[英]My app can't send a GET, OkHttp

I have strange a problem. 我有一个奇怪的问题。
I have service in localhost:8080 and everything is good configured, I can open this service in browser using by Android device ( real, not emulator ). 我在localhost:8080有服务,并且一切配置都很好,我可以使用Android设备(真实的,不是模拟器)在浏览器中打开此服务。 In my opinion I have something wrong in my code. 我认为我的代码有问题。

But in app i got java.net.ConnectException: Failed to connect to localhost/127.0.0.1:8080 但是在应用程序中,我得到了java.net.ConnectException: Failed to connect to localhost/127.0.0.1:8080

This is my code: 这是我的代码:

private void sendGET() {

        OkHttpClient.Builder client = new OkHttpClient.Builder();
        client.authenticator(new Authenticator() {
            @Override
            public Request authenticate(Route route, Response response) throws IOException {
                String credential = Credentials.basic("admin", "admin");
                return response.request().newBuilder().header("Authorization", credential).build();
            }
        });

        Request request = new Request.Builder()
                .url("http://localhost:8080/users")
                .build();

        client.build().newCall(request).enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                Log.w("http", e);
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                Log.w("http", response.body().string());
            }
        });

    }

What can be wrong here ? 这里有什么问题?

There could be issues with how localhost is being mapped to an actual IP address. localhost如何映射到实际IP地址可能存在问题。 Try using your actual IP address: 尝试使用您的实际IP地址:

Request request = new Request.Builder()
            .url("http://192.168.0.1:8080/users")  // for example
            .build();

The above assumes an IP address of 192.168.0.1 . 以上假设IP地址为192.168.0.1

To find your IP address, type ipconfig on Windows or ifconfig on Linux. 要查找您的IP地址,请在Windows上键入ipconfig或在Linux上键入ifconfig

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM