我想使 BIT (内置测试)在我的云服务器的数量。我需要该请求在大超时时失败。
我要怎么用爪哇咖啡?
尝试下面这样的方法似乎行不通。
public class TestNodeAliveness {
public static NodeStatus nodeBIT(String elasticIP) throws ClientProtocolException, IOException {
HttpClient client = new DefaultHttpClient();
client.getParams().setIntParameter("http.connection.timeout", 1);
HttpUriRequest request = new HttpGet("http://192.168.20.43");
HttpResponse response = client.execute(request);
System.out.println(response.toString());
return null;
}
public static void main(String[] args) throws ClientProtocolException, IOException {
nodeBIT("");
}
}
——编辑: 澄清正在使用的图书馆——
我正在使用 apache 中的 httpclient,下面是相关的 pom.xml 部分
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.0.1</version>
<type>jar</type>
</dependency>