Difference between URLConnection, HttpURLConnection and HttpsURLConnection

后端 未结 2 566
囚心锁ツ
囚心锁ツ 2020-12-24 07:14

What is the difference between URLConnection, HttpURLConnection and HttpsURLConnection (with SSL). Under what conditions, which one sh

2条回答
  •  余生分开走
    2020-12-24 07:22

    URLConnection is an abstract class so, you could never instantiate an object of that type.

    HttpURLConnection extends URLConnection and provides fields and methods specific to an HTTP URL, such as, HTTP_CLIENT_TIMEOUT or setRequestMethod.

    HttpsURLConnection extends HttpURLConnection and provides fields and methods specific to an HTTPS URL.

提交回复
热议问题