HttpURLConnection 详解

  1. HttpURLConnection 概述
    HttpURLConnection 采用http协议进行网络连接,HttpURLConnection 是Android中最基本的联网方式。最早的联网方式有两种——HttpURLConnection 和 HttpClient 。
    HttpURLConnection 是一种多用途,轻量级的http客户端,使用它来进行HTTP操作可以适用于大多数的应用程序。
    Android 6.0出来后,Google直接在Android SDK中移除了HttpClient 相关的API,HttpClient 已经被废弃了。

  2. 示例

/** 
**post请求 
**url为参数
*/
    public class NetUtils {
       public static String post(String url,String content){
       
       }
    }
   
    稍等   后续完善!

猜你喜欢

转载自blog.csdn.net/sunshine_a70/article/details/85335545