在Java中为Android设置HttpResponse超时,可以使用HttpURLConnection类。以下是一个简单的示例代码:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpResponseTimeout {
public static void main(String[] args) {
try {
URL url = new URL("https://www.example.com");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setConnectTimeout(5000); // 设置连接超时时间为5秒
connection.setReadTimeout(5000); // 设置读取超时时间为5秒
int responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
} else {
System.out.println("HTTP 错误: " + responseCode);
}
} catch (Exception e) {
System.out.println("错误: " + e.getMessage());
}
}
}
在上面的示例代码中,我们使用了HttpURLConnection类来创建一个HTTP请求,并使用setConnectTimeout()和setReadTimeout()方法分别设置连接超时时间和读取超时时间。这样,如果在指定的超时时间内无法连接到服务器或读取响应内容,则会抛出异常。
需要注意的是,这里的超时时间是以毫秒为单位的,因此设置为5000表示超时时间为5秒。您可以根据实际需求进行调整。
此外,如果您需要在Android应用中使用更高级的HTTP客户端,例如Retrofit或OkHttp,也可以在这些库中设置超时时间。
领取专属 10元无门槛券
手把手带您无忧上云