简体   繁体   中英

how to set tcp.nodelay when i use httpurlconnection

How to set tcp.nodelay for below given code:

URL url = new URL(urlText);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();

As far as I am aware you cannot set tcp.noDelay on `HttpURLConnection' as this does not allow any interface to alter underlaying tcp socket.

What I can recommend is try using Apache http client as it provide mechanism to set multiple TCP options. Have a look at this DefaultHttpClient

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM