在Android中重用HTTP连接

时间:2011-07-20 23:19:33

标签: android http connection reusability

我正在尝试重新使用Android中的连接,快速谷歌搜索会发现: http://foo.jasonhudgins.com/2010/03/http-connections-revisited.html

然而,我试过了,如果我使用像Wireshark这样的东西,我可以看到在三次连续调用之后我仍然得到HTTP FIN-ACK,此外,HTTP调用将进入不同的端口。

关于我在这里做错了什么的想法?

1 个答案:

答案 0 :(得分:1)

如果要使用与服务器的持久连接,则必须向URLConnection对象添加保持活动请求,如下所示:

myURLConnection.setRequestProperty("connection", "Keep-Alive");

See here