HttpURLConnection keepAlive
时间: 2023-10-12 08:10:56 浏览: 148
使用HttpURLConnection
HttpURLConnection 可以设置 keepAlive 属性,它指示是否启用 HTTP 持久连接。启用持久连接可以在多个请求之间重用底层 TCP 连接,从而减少了连接建立和关闭的开销,提高了性能。如果 keepAlive 属性设置为 true,则 HttpURLConnection 将尝试重用现有的连接,否则每个请求都将建立一个新的连接。默认情况下,keepAlive 属性是启用的。可以通过以下方式设置 keepAlive 属性:
```
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestProperty("Connection", "Keep-Alive");
```
或者:
```
conn.setKeepAlive(true);
```
阅读全文