How can I check a string against null in java? I am using
stringname.equalsignorecase(null)
but it's not working.
|
|
If you try this, it won't work, as you've found:
The reason is that foo is null, so it doesn't know what .equals is; there's no object there for .equals to be called from. What you probably wanted was:
The typical way to guard yourself against a null when dealing with Strings is:
That way, if foo was null, it doesn't evaluate the second half of the conditional, and things are all right. The easy way, if you're using a String literal (instead of a variable), is:
If you want to work around that, Apache Commons has a class - StringUtils - that provides null-safe String operations.
Another response was joking, and said you should do this:
Please don't do that. You should only throw exceptions for errors that are exceptional; if you're expecting a null, you should check for it ahead of time, and not let it throw the exception. In my head, there are two reasons for this. First, exceptions are slow; checking against null is fast, but when the JVM throws an exception, it takes a lot of time. Second, the code is much easier to read and maintain if you just check for the null pointer ahead of time. |
|||||||||
|
won't work? |
|||||||||||||||||||||
|
|
If we look at the implementation of the equalsIgnoreCase method, we find this part:
So it will always return
will definitely result in a NullPointerException. So equals methods are not designed to test whether an object is null, just because you can't invoke them on |
|||
|
|
|
Sure it works. You're missing out a vital part of the code. You just need to do like this:
;) |
|||
|
I'm not sure what was wrong with The MYYN's answer.
The above null check is quite alright. If you are trying to check if a String reference is equal (ignoring case) to another string that you know is not a null reference, then do something like this:
If there is any doubt as to whether or not you have null references for both Strings you are comparing, you'll need to check for a null reference on at least one of them to avoid the possibility of a NullPointerException. |
|||
|
|
|
Well, the last time someone asked this silly question, the answer was:
This "fix" only hides the bigger problem of how |
|||
|
|
|
This looks a bit strange, but...
Never had any issues doing it this way, plus it's a safer way to check while avoiding potential null point exceptions. |
||||
|
|
If your string having "null" value then you can use
|
||||
|
|