StringUtils下几种判空方法

1.public static boolean isEmpty(final CharSequence cs) {         return cs == null || cs.length() == 0;     } 判断的主要根据字符串长度和NULL. 2.  public static boolean isNotEmpty(final CharSequence cs) {         r
相关文章
相关标签/搜索