我正在使用以下代码向 Web 服务器发出 HTTP GET 请求:
private final OkHttpClient client = new OkHttpClient();
public void run() throws Exception {
Request request = new Request.Builder()
.url("http://publicobject.com/helloworld.txt")
.build();
Response response = client.newCall(request).execute();
if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
Headers responseHeaders = response.headers();
for (int i = 0; i < responseHeaders.size(); i++) {
System.out.println(responseHeaders.name(i) + ": " + responseHeaders.value(i));
}
System.out.println(response.body().string());
}
根据如下所示的OkHttp 文档,如果请求由于取消、连接问题或超时而无法执行,okhttp3 执行调用将抛出 IOException。
抛出:IOException - 如果由于取消、连接问题或超时而无法执行请求。由于网络可能在交换期间发生故障,因此远程服务器可能在故障之前接受了请求。
我想知道是否有办法知道 IOException 是否是由于请求超时?