StringUtils下几种判空方法

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