我试图以下列方式超时 httpurlconnection
URL urlConnect = new URL(url.toString());
HttpURLConnection.setFollowRedirects(false);
HttpURLConnection urlc = (HttpURLConnection) urlConnect.openConnection();
urlc.setConnectTimeout(1000*5);
urlc.setReadTimeout(1000*5);
urlc.connect();
但无法连接,它采用 apache tomcat 分配的 2 分钟超时,而不是我提供的 5 秒 g,在这种情况下如何手动超时 httpurlconnection