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

I have an ArrayList that i would like to join with a delimiter of ',', i read in some answers here that StringUtils.join is a good option but the problem is that when i try to join an ArrayList i get the following error:

java.lang.NoSuchMethodError: org.apache.commons.lang.StringUtils.join(Ljava/util/Collection;C)Ljava/lang/String;

code:

ArrayList<String> friendsList = new ArrayList<String>();
.
.
.
StringUtils.join(friendsList, ',');

what am i missing ?

when i'm coding with netbeans it does not alert me of this error, it happens only when I try to compile.

share|improve this question

5 Answers

up vote 11 down vote accepted

You have an older version of commons-lang. Get the latest version, which has this method.

Alternatively, you can call StringUtils.join(friendsList.toArray(), ',')

share|improve this answer
Thanks for this answer, I was pulling my hair out over this one. – tth Nov 23 '11 at 3:17

"it happens only when I try to compile."

This is not a compilation error. It's a linkage error that happens at runtime when the signature of the method being invoked does not match the one of the relevant class in the classpath. You probably have different jars at compile time and runtime (different versions maybe).

share|improve this answer

An issue with classpath I guess.

share|improve this answer

This method exists since commons lang 2.3, check your jar.

share|improve this answer

I use 2.4.jar. Still I had to use something like this StringUtils.join(friendsList.toArray(), ',') to get it done.

share|improve this answer

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.