StringUtils.isBlank () vs String.isEmpty ()
Natknąłem się na kod, który ma następujące: String foo = getvalue("foo"); if (StringUtils.isBlank(foo)) doStuff(); else doOtherStuff(); Wydaje się to funkcjonalnie równoważne z następującymi: String foo = getvalue("foo"); if (foo.isEmpty()) doStuff(); else doOtherStuff(); Czy jest różnica...