gpt4 book ai didi

java - 使用 urlConnection.getOutputStream() 获取主机时出现问题;在我的真实设备上

转载 作者:行者123 更新时间:2023-12-01 21:18:37 25 4
gpt4 key购买 nike

我目前正在构建一个应用程序,该应用程序必须使用 GET 或 POST 查询来访问我的 REST 服务,但有时(不是所有时候,只是有时)在尝试通过输入 IPv4 地址连接到主机时出现以下错误:

2019-11-14 14:01:22.279 30991-31089/com.example.mc.practical_assigment E/CONNECT ERROR GET USER: class java.net.NoRouteToHostException
2019-11-14 14:01:22.279 30991-31089/com.example.mc.practical_assigment E/CONNECT ERROR GET USER: [Ljava.lang.StackTraceElement;@840301f
2019-11-14 14:01:22.279 30991-31089/com.example.mc.practical_assigment E/CONNECT ERROR GET USER: Host unreachable

这是给我错误的行,我的项目在此停止:

urlConnection.getOutputStream();

当使用Android Studio模拟器,PIXEL 2 XL API 28时,从来没有错误,连接始终建立,但在我的真实设备OnePlus ONEPLUS A3003上,有时程序无法获得主机响应。

我之前使用 Postman 测试过 REST 服务,因为有时它每次都能在我的应用程序和 Postman 上运行,所以我知道 URL 路径是有效的。我也尝试使用我的移动热点,但仍然无法解决问题。我已尝试关闭计算机上的防火墙,以便数据不会以任何方式被过滤。

在我看来,我的问题出在我的手机某个地方,但我不知道是什么原因,因为我无法弄清楚错误发生的模式。还有什么可以尝试的吗?也许问题出在使用 Android Studio 时的那种连接类型,我应该尝试使用其他代码吗?我的代码的整个示例:

try {
url = new URL("http://" + BaseAddress.getAddress() + ":8084/ACME_Electronic_Supermarket/webresources/acme/user/login");
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setDoOutput(true);
urlConnection.setDoInput(true);
urlConnection.setRequestMethod("POST");
urlConnection.setRequestProperty("Content-Type", "application/json");
urlConnection.setUseCaches (false);

OutputStream os = urlConnection.getOutputStream(); //point of failure
DataOutputStream outputStream = new DataOutputStream(os);
String payload = gson.toJson(user);
outputStream.writeBytes(payload);
outputStream.flush();
outputStream.close();

// get response
int responseCode = urlConnection.getResponseCode();
if(responseCode == 200) {
String response = readStream(urlConnection.getInputStream());
Gson gson = new Gson();
User user = gson.fromJson(response, User.class);
if(user.getUuid() != null) {
User.setCurrentUser(user);
Intent shoppingListIntent = new Intent(activity, ShoppingList.class);
activity.startActivity(shoppingListIntent);
} else {
RestResponseMessage rrm = gson.fromJson(response, RestResponseMessage.class);
writeToast(rrm.getMessage());
}
}
else
writeToast("Error while trying to complete login - wrong response");
}
catch (Exception e) {
Log.e("CONNECT ERROR GET USER", e.getClass().toString());
Log.e("CONNECT ERROR GET USER", e.getStackTrace().toString());
Log.e("CONNECT ERROR GET USER", e.getMessage());
writeToast("Error while trying to complete login");
}
finally {
if(urlConnection != null)
urlConnection.disconnect();
}

所展示的是在Runnable接口(interface)的run方法中实现Runnable接口(interface)的类中运行的部分代码。这是调用该类并在新线程中运行它的方式:

GetUser getUser = new GetUser(u, activity);
Thread thr = new Thread(getUser);
thr.start();

最佳答案

问题一直出在我的手机上。我启用了在发现更好的 Wi-Fi 信号时自动连接到更好的 Wi-Fi 信号的功能(启用了开发人员设置),这导致我的手机始终在两个网络之间切换,具体取决于我在房间/房屋中的位置。另外,切换网络后,应用程序需要重新运行,否则也会失败。

关于java - 使用 urlConnection.getOutputStream() 获取主机时出现问题;在我的真实设备上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58858908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com