This surely has been asked before, but Googling doesn't find it. Is there, in any of the standard java libraries (including apache/google/...), a static isNullOrEmpty() method for Strings?
|
|
from Apache commons-lang. The difference between I generally prefer using apache-commons if possible, instead of writing my own utility methods, although that is also plausible for simple ones like these. |
|||||||
|
|
|
|||
|
|
|
If you are doing android development, you can use:
Added in API level 1 Returns true if the string is null or 0-length. |
|||||
|
|
|||||||||||||||
|
|
For new projects, I've started having every class I write extend the same base class where I can put all the utility methods that are annoyingly missing from Java like this one, the equivalent for collections (tired of writing list != null && ! list.isEmpty()), null-safe equals, etc. I still use Apache Commons for the implementation but this saves a small amount of typing and I haven't seen any negative effects. |
|||||||
|
|
You can add one
I have
|
|||
|
|
|
I've seen this method written a few times in projects I've been on but I have to say I've never written it myself, or called it either ... Generally I find null and empty are completely distinct conditions and I have no reason to ever conflate them. |
||||
|
|
|
In addition to the other answers, I ran across this because I'm a C# programmer primarily, but trying to keep fresh in Java. I noticed that when I tried to use ex.
Just another alternative for those who already have the MySQL connector referenced in your project, but not the other |
|||
|
|