602
1、空串 "" 是长度为0的字符串。
2、空串是一个Java对象,有自己的串长度(0)和内容(空)。String变量还可以存一个特殊的值,名为 null ,表示目前没有任何对象与该变量关联。
实例
Stringstr=“\r\n\t”; System.out.println(str+“"+StringUtils.isBlank(str)); str.replace("\r",“”); str.replace("\t",“”); str.replace("\n",“”); System.out.println(str+"”+StringUtils.isBlank(str));