Network Android

import android.content.Context;
import android.net.ConnectivityManager;
class NetworkUtil {
  public static boolean CheckNetwork(Context context) {
    boolean flag = false;         
    ConnectivityManager cwjManager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
    if (cwjManager.getActiveNetworkInfo() != null)            
      flag = cwjManager.getActiveNetworkInfo().isAvailable();
    return flag;
  }
}