java中是否有任何方法可以在不使用httpclient、http-commons等第三方api的情况下进行http连接池?
在我的情况下,我想打开一个带有特定 servlet 的 url 的连接,并且我的查询字符串发生了变化,但是每当我打开一个连接时,它就会打开一个新连接,就像我看到的那样做 'netstat -anp | grep portno' 我不想要?
String sendMessageUrl="http\://ip\:portno/contextpath/servlet/Servletname?parameter1\=¶meter2\=";
URL testURl=new URL(sendMessageUrl.replaceAll("&", name+"&")+surname);
HttpURLConnection httpConnection=(HttpURLConnection)testURl.openConnection();
httpConnection.connect();
if(httpConnection.getResponseCode()==200)
{
System.out.println("Success");
}
这里只有参数 1 和参数 2 发生变化,只是整个 url 保持不变。