Daisetsu
Daisetsu

Reputation: 4976

What is the Commons Lang and how do I use it? (Java)

I was trying to find a way to do some string manipulation and ran across the Commons Lang in a response to another question posted here on stackoverflow. From what I can tell it's a collection of libraries, do I have to download and somehow import this to eclipse?

Upvotes: 3

Views: 628

Answers (2)

Bill the Lizard
Bill the Lizard

Reputation: 405765

Commons Lang is a library from Apache that you can download and include in your project like any other 3rd party jar.

Upvotes: 1

Jonathan Holloway
Jonathan Holloway

Reputation: 63672

Commons Lang as you put it is just a general purpose common library that provides a number of useful features.

To use it you need to download the JAR and add it to the Java Build path in Eclipse. See:

http://www.informit.com/articles/article.aspx?p=367962

Upvotes: 1

Related Questions