Here you can find the source of ckIsEmpty(String s)
public static boolean ckIsEmpty(String s)
//package com.java2s; public class Main { public static boolean ckIsEmpty(String s) { if (s == null || s.trim().equals("") || s.trim().equals("null")) { return true; }//from w ww . j a va 2 s .com return false; } }