调用我们的内部网络服务之一似乎出现以下错误:
java.io.IOException: unexpected end of stream on Connection{webservicessandbox.xxx.com:443, proxy=DIRECT@ hostAddress=174.143.185.13 cipherSuite=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA protocol=http/1.1} (recycle count=0)
从我在其他地方看到的情况来看,这被指出是服务器问题,但是当在浏览器或 IOS 中调用 WS 时,我们没有看到这个问题。我同时使用了 OkHTTP 和手动 HTTPUrlConnection 实现,它似乎没有任何区别。有人有什么想法吗?
OKHttp:
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.addHeader("Authorization", "Bearer " + apiToken)
.addHeader("content-type", "application/json")
.url(uri)
.build();
HTTPURLConnection:
URL myURL = new URL(uri);
HttpsURLConnection myConnection = (HttpsURLConnection) myURL.openConnection();
myConnection.setConnectTimeout(TIMEOUT_MILLISEC);
myConnection.setDoOutput(false);
myConnection.setRequestMethod("GET");
myConnection.setRequestProperty("Authorization", "Bearer " + apiToken);
myConnection.setRequestProperty("content-type", "application/json");
int respCode = myConnection.getResponseCode();
原文由 Benjamin S 发布,翻译遵循 CC BY-SA 4.0 许可协议
请尝试以下可能的解决方案(在我看来):
1- 尝试使用
retryOnConnectionFailure(true)
如下:2- 尝试添加:
request.addHeader("Connection","close")
(大多数情况下这是解决方案,关于 Kartik 的回答。)3- 请增加服务器的响应时间(设置得尽可能高),然后重试。
另请参阅: OkHTTP Websocket:连接上的意外结束