-1

Hi I found this method is StringUtils.isBlank() I'm using JDK 1.8.51 I'm not able to found it there is any jar to download to have it?

thanks

meditat
  • 1,197
  • 14
  • 33
YK mar
  • 669
  • 2
  • 10
  • 32
  • Something like: https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html – Anthed Dec 12 '17 at 16:11
  • Spring also has the same impl: `org.springframework.util.StringUtils.isEmpty()`. If you're using spring, you get this for free. – Bohemian Dec 12 '17 at 16:39

1 Answers1

1

The StringUtils class is from Apache Commons lang. The latest version is available from Maven Central. You can download it here.

Michael
  • 41,989
  • 11
  • 82
  • 128