Domande taggate «string-utils»

11
StringUtils.isBlank () vs String.isEmpty ()
Mi sono imbattuto in un codice che ha il seguente: String foo = getvalue("foo"); if (StringUtils.isBlank(foo)) doStuff(); else doOtherStuff(); Questo sembra essere funzionalmente equivalente al seguente: String foo = getvalue("foo"); if (foo.isEmpty()) doStuff(); else doOtherStuff(); C'è una differenza tra i due ( org.apache.commons.lang3.StringUtils.isBlanke java.lang.String.isEmpty)?
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.