StringUtils.isBlank() vs String.isEmpty() I ran into some code that has the following: String foo = getvalue("foo"); if (StringUtils.isBlank(foo)) doStuff(); else doOtherStuff(); This appears to be functionally equivalent to the following: String foo... May 18, 2022 0 Comments