Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a school project in eclipse, and when I try and use the isEmpty() method on a String, Eclipse shows up the following error:

The method isEmpty() is undefined for the type String

I've run the Java updates, but am still getting it. Is any reason why this method would be undefined?

share|improve this question
Are you on Java 6? – Zed Sep 27 '09 at 13:03

3 Answers

up vote 25 down vote accepted

String.isEmpty() was added in Java 6. In earlier versions you can use StringUtils.isEmpty(String) from Apache's commons-lang library.

To configure Eclipse to use the 1.6 JRE, go to Window->Preferences->Java->Installed JREs. If you haven't already got JAva 1.6 configured, select Add...,browse to your 1.6 installation and add it.

installed JREs screenshot

configure JREs screenshot

share|improve this answer
4  
As this is a beginner question, perhaps it should be explicitly mentioned that that the StringUtils class is from a 3rd-party open-source library, Apache Commons Lang (commons.apache.org/lang) – Jonik Sep 27 '09 at 13:13
@Jonik, good point, added – Rich Seller Sep 27 '09 at 13:19
thanks guys, got it working. – Aaron Moodie Sep 27 '09 at 13:23
hey Jonik, sorry, one more question. i've got 1.6 working, but am now getting this error: ZoneInfo: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/zi/ZoneInfoM‌​appings (No such file or directory) Is there something else in Eclipse I need to change? – Aaron Moodie Sep 27 '09 at 13:48
I'm no mac expert, but this post (forums.rotoworld.com/…) suggests a solution – Rich Seller Sep 27 '09 at 13:53

If you're not on Java 6, String.length() == 0 will return the same result as String.isEmpty().

share|improve this answer

String.isEmpty() was introduced in Java release 1.6. You might want to check what JDK version you're using for your project. (I don't know much about Eclipse myself, but it should be somewhere in the project settings.)

share|improve this answer
great, thanks! I've just had a look and I'm on 1.5, even though I ran the lastets OSX java update, which is supposed to update to Java SE 6 version 1.6.0_05. – Aaron Moodie Sep 27 '09 at 13:12
Check if you can get 1.6 added in Ecplise's "Installed JREs" as illustrated in Rich Seller's answer :) – Jonik Sep 27 '09 at 13:16
@Aaron you pretty much have to manually change the CurrentJDK sym-link (located in /System/Library/Frameworks/JavaVM.framework/Versions) to point at 1.6 instead of 1.5 if you want 1.6 as your default JDK. – Hank Gay Sep 27 '09 at 15:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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