每五秒一个功能:
private boolean ping() {
try {
URL pingServerUrl = new URL(serverResourceLocator);
HttpURLConnection connection = (HttpURLConnection) pingServerUrl.openConnection();
if(connection.getResponseCode() == 200) {
lastPingSuccessful = true;
}
System.out.println("pinged");
}catch(Exception exc) {
exc.printStackTrace();
return lastPingSuccessful;
}
return lastPingSuccessful;
}
叫做。它是 ping 功能的类型。它尝试连接到服务器上的 servlet,并随 URL 一起发送一些凭据serverResourceLocator
。困扰我的是每 5 秒打开一个新连接。
我怎样才能避免它?