Android WebView XMLHttpRequest Keepalive
当在 Android WebView 中发出 XMLHttpRequests 时,看起来并没有使用 keepalive 连接。
当频繁发出请求时,我的桌面浏览器都使用 keepalive(例如,在页面的 onload 事件中触发的 XMLHttpRequest 会排队到页面的加载请求连接)。
有谁知道保活连接的要求是什么(超时、标头..)?
非常感谢!
when making XMLHttpRequests in an Android WebView, no keepalive connections are used as it seems.
My desktop browsers all use keepalive when the requests are frequently made (eg. XMLHttpRequests triggered in a page's onload event are queued to the page's loading request connection).
Does anybody know what the requirements for a keepalive connection are (timeouts, headers..) ?
Thanks very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想要做的是使用 HTTPUrlConnection http://developer.android.com/参考/java/net/HttpURLConnection.html
并设置 Keep-Alive,如下所示:
这将为您提供持久的 URL 连接。然后您将使用输入和输出流来读取和读取数据。将数据写入服务器或从服务器写入数据。
What you want to do is use a HTTPUrlConnection http://developer.android.com/reference/java/net/HttpURLConnection.html
and set the Keep-Alive like this:
This gives you a persistent URL connection. Then you would use input and output streams to read & write your data to and from the server.