vote up 126 vote down star
198

I've never seen a good list of free Java libraries.

What are some of your can't-live-without Java libraries?

Note: to keep this poll as useful as possible, please remember:

  • Post only one library per answer
  • We don't want duplicate answers, so before posting check if the library has been mentioned already
  • When adding a new library, provide a short summary of what it does / why you think it's useful
flag
1  
Since no-one seems to have opinions, I'll just be bold (like they say in Wikipedia) and remove the Summary as it stands now. (If someone wans to re-add it, please consider other options than a categorised list.) – Jonik Jun 8 at 18:12
show 9 more comments

117 Answers

1 2 3 4 next
vote up 127 vote down

http://commons.apache.org/

Apache Commons. Nuff said.

link|flag
6  
It's actually really annoying to see code with custom utility methods/classes that try to do the same thing as commons classes but do it badly. – Michael Rutherfurd Nov 20 '08 at 11:25
8  
I think commons logging is seriously annoying. It provides nothing useful over log4j. Neither are part of the JDK so they're equally portable. Commons logging just replaces one dependency with another. And it makes logging harder to configure. – Draemon Dec 12 '08 at 13:16
4  
Take a look at the "Fast" collection classes in Commons-Collections. What a pile of utter, utter rubbish. – oxbow_lakes Feb 12 at 0:08
20  
Commons is 50% useful stuff and 50% utter crap. – foljs Apr 21 at 16:52
6  
Many of the apache-commons APIs have outdated concepts, the APIs are badly maintained. It's Sad. – ivan_ivanovich_ivanoff Jun 21 at 0:32
show 7 more comments
vote up 77 vote down

Apache Log4j is a well-known logging-library.

link|flag
1  
It may depend on what appenders you use, some web sites <cough>stackoverflow</cough> have been known to use database appenders. (Log4net as well). I have never had concurrency issues with log4j used in high volume sites. – David Waters Mar 19 at 16:45
show 5 more comments
vote up 63 vote down
link|flag
4  
I'd have put them in two separate answers so that they can be voted on separately – Joachim Sauer Jan 15 '09 at 10:27
show 2 more comments
vote up 58 vote down

Joda Time is an absolute must if you're doing anything beyond the most trivial of date computations.

Note: JSR 310 aims to fix a lot of the problems with the standard Java Date and Time API.

link|flag
2  
Couldn't agree more – SCdF Sep 25 '08 at 5:37
2  
I haven't looked at it in depth, but I was under the impression that the proposed API would borrow heavily from the Joda Time project. I believe all of the value objects will be immutable and the primary domain concepts they are modeling look to be quite similar to those in Joda Time. Also, Stephen Colebourne, the project lead from Joda Time is one of the leads on the JSR 310 project as well. If/when this JSR is added to the public release the Joda Time project will likely die off or become radically transformed, and the new API will essentially be what Joda Time 2.0 would have been. – Mike Deck Jul 28 at 5:14
1  
JSR 310 has slipped Java 7. Let's hope it's in Java 8. There won't be a strong reason to change to it if you're already happy using Joda-Time. However, libraries would be able to use it, even using its types in their APIs, without foisting the Joda dependency on all their users. – Kevin Bourrillion Nov 5 at 18:12
show 1 more comment
vote up 54 vote down

Spring, used for MVC (Model-View-Controller) projects

link|flag
6  
Spring is good for a LOT more than MVC projects. – John Meagher Sep 24 '08 at 22:28
1  
That's more of a framework than a development library... – Zombies Dec 1 '08 at 18:34
show 3 more comments
vote up 49 vote down

Let's not forget the excellent Google Collections library.

Javalobby's interview with its main developers is a good introduction: What is the Google Collections Library?

Comments by Steve McLeod:
It's gradually altering my whole coding style. Preconditions, Functions, Transformers are stupendous once you get the hang of them.

link|flag
2  
+1. Google Collections seems like the best possible extension to the Java Collections framework one could imagine. The API and its documentation are of high-quality; the library is built to fully utilise Java 5 features (generics, enums, etc); it's been designed by really smart people who've had the possibility to turn to people like Joshua Bloch and Doug Lea for consultation. Read the Javalobby article if you haven't yet! – Jonik Jun 2 at 9:24
show 2 more comments
vote up 44 vote down

Lucene for full text searches without a database.

link|flag
show 1 more comment
vote up 41 vote down

JfreeChart is the best freely available charting thing available on any platform.

link|flag
show 2 more comments
vote up 38 vote down

iText for pdf creation. Couldn't live without it.

http://www.lowagie.com/iText/

link|flag
vote up 33 vote down
  • JUnit for unit testing
  • Tomcat or Jetty as servlet container
  • Spring for configuration and glueing code together
  • Hibernate for object persistence
  • C3P0 for database connection pooling
  • Lucene for fulltext search
  • Log4J for logging
  • Apache Commons for a whole bunch of stuff: language utilities (see StringUtils), special collections, IO, file uploads, validation, etc.
  • POI for reading/writing MS Office file formats
  • PDFBox for manipulating PDFs
  • Velocity for templating

These are all libraries I use or have used and can definitely recommend.

link|flag
4  
If you create a separate post for each suggestion they can be rated individually:-) – johnstok Oct 15 '08 at 20:28
4  
Yeah, now it's impossible to tell which of the 26 votes are meant e.g. for Hibernate and which for Velocity. I think this should be split into separate answers (well, those libs that don't have a separate post yet), or failing that, voted down. – Jonik Jun 2 at 16:29
vote up 29 vote down

Name: XStream

Website: http://xstream.codehaus.org/

Purpose: Out of the box POJO serialization to XML and back again

link|flag
vote up 28 vote down

easymock for mock objects in unit tests.

link|flag
vote up 26 vote down

Name: Guice

Website: http://code.google.com/p/google-guice/

Purpose: Dependency Injection, ease of testing

link|flag
show 1 more comment
vote up 24 vote down

Mockito for easy testing. Allows mocking concrete classes (besides interfaces, of course) as well.

I've written unit tests for years, but Mockito and Easymock impressed me immediately.

link|flag
4  
+1 for Mockito! Unlike Easymock, it was quick for me to "grok", and it actually made tests simpler and easier to understand – Jonik Apr 14 at 11:15
vote up 24 vote down

Name: The Legion of the Bouncy Castle

Website: http://www.bouncycastle.org/java.html

Purpose: Security/Cryptography

link|flag
vote up 21 vote down

Name: Miglayout

Website: http://www.miglayout.com/

Purpose: A powerful layout manager that just works

link|flag
3  
MigLayout can do much more in higher precision. You can use the API too, not just Strings, and the ease of use of the API puts the ugly GridBagLayout API to shame. – haffax Jul 24 at 21:05
show 1 more comment
vote up 20 vote down

SWT, though I haven't used it for a while. It yeilds pretty great user interfaces.

link|flag
show 1 more comment
vote up 19 vote down

Name: SwingLabs

Website: https://swingx.dev.java.net/

Purpose: Extensions to Swing

link|flag
show 1 more comment
vote up 18 vote down

Actually not just the commons, but all of Apache Jakarta project has great Java libraries. From MS Office file access to collection utilities to byte code manipulation. The page also lists projects that have moved out of Jakarta (eg: maven).

Another place is http://delicious.com/tag/java+library - several of my colleagues use that combination of tags (language + library) to organize the things they run across (mortis, robdimarco).

link|flag
vote up 14 vote down

These two are excellent:

Apache MINA - Well-designed, high-performance, network application framework using Java NIO

Jetty - Easy-to-use, full-featured, embeddable web server and webapp container

link|flag
1  
I use Jetty all the time. – Mnementh Sep 25 '08 at 15:50
show 1 more comment
vote up 13 vote down

Surprisingly, one good facade lib for logging (better than commons logging) is missing:

(EDIT: removed JAXB, was already suggested -- also, as per jonik's suggestion, better split this up)

link|flag
show 4 more comments
vote up 12 vote down

Name: Glazed list

Website: http://publicobject.com/glazedlists/

Purpose: Data flow, instead of logic flow. Data centric. Works well with Swing

link|flag
1  
this description doesn't quite do GlazedLists justice - the basic idea is to add event handling to the java.util.List interface. This allows for some amazingly elegant software design if you are doing anything that is list based. – Kevin Day Sep 25 '08 at 1:40
show 1 more comment
vote up 12 vote down

Guess you all missed POI for interaction with MS Excel !

link|flag
vote up 12 vote down

TestNG: http://testng.org/

It was mightily useful in creating a database driven web testing framework some years ago. JUnit was too rigid at the time to do what I needed.

link|flag
show 1 more comment
vote up 12 vote down

Name: JDOM

Website: http://www.jdom.org/

Purpose: XML DOM manipulation

link|flag
vote up 11 vote down

I'm quite partial to

JasperReports - report generation libraries

prefuse - visualization toolkit

link|flag
1  
I've used JasperReports extensively. The API could use more comments, but the combination of iReport and JasperReports is not to be missed. – Dave Jarvis Aug 4 at 20:25
show 1 more comment
vote up 11 vote down

Saxon, for XSLT 2.0 processing (and other handy XML stuff)

link|flag
show 1 more comment
vote up 10 vote down

The JGoodies Forms framework, featuring the excellent (and most importantly, sane) FormLayout layout manager for Swing.

link|flag
vote up 10 vote down

Note: This is a duplicate of another answer to this question (and that other answer has more votes as I write this, so vote up the other answer!). Notes from this answer have been merged there.


Google Collections

It's gradually altering my whole coding style. Preconditions, Functions, Transformers are stupendous once you get the hang of them.

link|flag
vote up 9 vote down

JAI - Java Advanced Imaging API it's very useful to do powerful image manipulation. Here comes Sun's description of it:

The Java Advanced Imaging API (JAI) provides a set of object-oriented interfaces that supports a simple, high-level programming model which allows images to be manipulated easily in Java applications and applets. JAI goes beyond the functionality of traditional imaging APIs to provide a high-performance, platform-independent, extensible image processing framework.

I would also recommend JAI-Image-IO Tools.

link|flag
1  
JAI is the best solution for what it does, however it's one of the less programmer-friendly APIs I've used. :( – Domchi Jan 10 '09 at 2:34
show 1 more comment
1 2 3 4 next

Your Answer

Get an OpenID
or

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