Sending GET & POST requests in Java or other without responses
问题 Is it possible to make GET & POST requests in Java or another language such that you don't care about what is returned? As in just sending the requests but not wanting to receive any responses? 回答1: Whether you care about the response or not, it will be sent. The HTTP protocol specifications say that it must be. If you don't care about the response, your client could just close the connection immediately after sending the request. But the chances are that you do want to know that the request