Android HttpURLConnection-如何设置HTTP / 1.1协议?

时间:2018-06-30 18:02:57

标签: java android httpurlconnection

如何使用HttpURLConnection将HTTP协议设置为HTTP / 1.1?

我使用的一些二传手:

    HttpsURLConnection httpsURLConnection = (HttpsURLConnection) url.openConnection();
    connection.setRequestProperty("Cache-Control", "max-age=0");
    connection.setRequestProperty("Connection", "keep-alive");
    connection.setRequestProperty("Keep-Alive", "300");
    connection.setRequestProperty("Accept-Charset", "UTF-8;q=1,ISO-8859-1;q=0.9,*;q=0.5");

0 个答案:

没有答案