这几个类都是用于和服务器端的连接,有些功能都能够实现,关系是: 一.URL URL标识着网络上的一个资源:该类包含一些URL自身的方法,如获取URL对应的主机名称,端口号,协议,查询字符串外,还有些方法: openConnection() Returns a new connection to the resource referred to by this URL. final InputStream openStream() Equivalent to openConnection().…
package com.way.util; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo.State; public class NetUtil { public static final int NETWORN_NONE = 0; public static final int NETWORN_WIFI = 1; public stat…