vote up 0 vote down star

correct me if I'm wrong.

If str has a character such as "" in it then running:

str.toLowerCase(Locale.English);

throws a null pointer exception. That's the behavior I'm seeing.

So what's the deal here? What's going on? It isn't specified that toLowerCase throws a null pointer exception.

Is there an easy way to get around this? I need the str to be lower case to be able to use a case insensitive contains check with another string, but I need the string to contain those characters for it to be displayed correctly.

What would you say is the most efficient solution if there is no "easy way?"

flag

73% accept rate
2  
are you sure str isn't null? – jjnguy Jul 27 at 19:51
3  
Are you sure that str isn't null? – Sean Bright Jul 27 at 19:51
2  
The most likely explanation is that str in that code snippet is null. If not, can you post the exact value of str when you get the error? – Yishai Jul 27 at 19:52
well that's just creepy. – Sean Bright Jul 27 at 19:52
@Sean Hahaha, I laughed when I saw that. – jjnguy Jul 27 at 19:54
show 1 more comment

2 Answers

vote up 2 vote down check

Rather than converting to lower case, I would suggest trying the String object's equalsIgnoreCase() method.

Although, as the comments do say, there is no reason for the toLowerCase() function to be throwing a null pointer exception unless a parameter is null. I would either use a debugger to check the state of str or wrap the toLowerCase() function call in an if statement and if str is null, do something (like throw an exception, print a statement, log a message) and not execute the function call.

link|flag
vote up 1 vote down

Hmm, it works for me:

String upper = new String("asdCSD4rSDFSDFS•••••••••XCj");
String lower = upper.toLowerCase(Locale.ENGLISH);
System.out.println("Lower " + lower);

Lower asdcsd4rsdfsdfs•••••••••xcj
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.