fork(1) download
  1. public class Main
  2. {
  3. public static boolean isEmpty(String s)
  4. {
  5. if ((s != null) && (s.trim().length() > 0))
  6. return false;
  7. else
  8. return true;
  9. }
  10.  
  11. public static void main(String[] args)
  12. {
  13. System.out.println(isEmpty(" "));
  14. }
  15. }
Success #stdin #stdout 0.06s 380160KB
stdin
Standard input is empty
stdout
true