Android WebView XMLHttpRequest Keepalive

发布于 2024-11-02 07:35:18 字数 208 浏览 0 评论 0原文

当在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

五里雾 2024-11-09 07:35:18

你想要做的是使用 HTTPUrlConnection http://developer.android.com/参考/java/net/HttpURLConnection.html

并设置 Keep-Alive,如下所示:

connection.setRequestProperty("Connection", "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:

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

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文