标签: android http https android-networking
我想在我的Android应用程序中建立一个持久的http连接。由于后端响应配置为 Keep-Alive 。
我想知道如何在Android中建立持久的http连接,以避免每次都有握手请求。
答案 0 :(得分:-1)
设置标题以包含保持活动请求。
HttpURLConnection conn = (HttpURLConnection) mURL.openConnection(); conn.setRequestProperty("Connection","Keep-Alive");