gpt4 book ai didi

java - 为什么 HttpURLConnection 在 android 上失败但在 java Eclipse 上成功?

转载 作者:行者123 更新时间:2023-12-02 10:20:16 27 4
gpt4 key购买 nike

我不知道为什么 HttpURLConnection 在 android 上失败但在 java Eclipse 上成功。我已经面对这个问题很多天了,并试图解决它,但从未通过。我的例子的代码如下:

try {  
url = "https://mobitrade.vpbs.com.vn:8080/getlistckindex/hnx";
URL urlGetSymbol = new URL(url);
HttpURLConnection con = (HttpURLConnection) urlGetSymbol.openConnection();
con.setRequestMethod("GET");
con.setReadTimeout(15000);
con.setConnectTimeout(15000);
con.setDoOutput(true);
con.connect();
int responseCode = con.getResponseCode();
BufferedReader in =new BufferedReader(new InputStreamReader(con.getInputStream()));
StringBuilder response = new StringBuilder();
String inputLine;
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
String responseString = response.toString().replaceAll("\\[", "").replaceAll("\\]", "")
.replaceAll("\"", "");
} catch (IOException ioe) {
ioe.printStackTrace();
}

该代码在 java eclipse 中工作正常,但由于 con.connect() 出错而无法在 android 上工作。

最佳答案

我认为您正在为 HttpURLConnection 使用不同的 api 包,因此请检查一下。您可以使用 java.net.HttpURLConnection api 进行相同的操作。

关于java - 为什么 HttpURLConnection 在 android 上失败但在 java Eclipse 上成功?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54395747/

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