Bootstrap

JAVA8常见方法整理

  1. 判断字符串不是null和空字符
String str = null;
if (str != null && !str.isEmpty()) {
    // 字符串不是 null 且不是空字符
}

;