摘要: isEmpty只判断是否为null和长度是否为0 public static boolean isEmpty(String str) { return str == null || str.length() == 0; } isBlank判断的是该字符串是否为空白字符串 public static 阅读全文
posted @ 2020-03-22 14:19 踏月而来 阅读(259) 评论(0) 推荐(0) 编辑