gpt4 book ai didi

Android WebView XMLHttpRequest Keepalive

转载 作者:太空宇宙 更新时间:2023-11-03 11:22:22 25 4
gpt4 key购买 nike

在 Android WebView 中创建 XMLHttpRequests 时,没有像看起来那样使用保活连接。

当请求频繁发出时,我的桌面浏览器都使用 keepalive(例如,在页面的 onload 事件中触发的 XMLHttpRequests 排队到页面的加载请求连接)。

有人知道保持 Activity 连接的要求是什么(超时、 header ..)吗?

非常感谢!

最佳答案

您要做的是使用 HTTPUrlConnection http://developer.android.com/reference/java/net/HttpURLConnection.html

并像这样设置 Keep-Alive:

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

这为您提供了一个持久的 URL 连接。然后,您将使用输入和输出流从服务器读取和写入数据。

关于Android WebView XMLHttpRequest Keepalive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5709903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com