vote up 125 vote down star
194

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

116 Answers

vote up 3 vote down

Log5j is a wrapper around Log4j that uses Java 5's var-args for an automatic String.format in log messages:

log.debug("IOException while reading %s", exception, file.getName());

link|flag
vote up 1 vote down
link|flag
show 1 more comment
vote up 4 vote down
  • Substance A nice Swing LaF.
  • SLF4J Use the logging system that YOU want.
link|flag
show 1 more comment
vote up 2 vote down

Another vote for SWT. GridLayout is so much better than Swing's GridBagLayout (of which I have nightmares about). Although, SWT has some glitches, If I have the choice, I'd always prefer SWT to Swing.

link|flag
vote up 5 vote down

FreeMarker for templates.

link|flag
vote up 0 vote down

Castor for Java-XML binding

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 1 vote down

A port of apache collections with parameterization: http://larvalabs.com/collections/

I feel like there is another one of these too, but I can't think of it.

link|flag
vote up 6 vote down

Rhino -- http://www.mozilla.org/rhino/

a javascript compiler/interpreter, allowing the execution of javascript within your java app.

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

Most of my faves have been mentioned (like Apache Commons, Hibernate, and Spring), but I'd like to add:

link|flag
vote up 0 vote down

Apache-commons if you need a lot of utilities that the Java standard library left out (e.g., collections, XML, etc.)

JMS (can also get as part of J2EE) if you need to reliable send messages from one machine to another and don't want to deal with the hassle of maintaining your own queues.

I'm also a fan of SWT for GUIs (mostly used as part of the Eclipse project)

link|flag
vote up 3 vote down

The Java Spell Checker JOrtho can be use very easy with any GUI application.

Website: http://www.inetsoftware.de/products/tools/JOrtho/

link|flag
vote up 6 vote down

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

**java.util**

It is java, it is free, it is good, and I can't live without it.

Don't make it less for live in the core :)

link|flag
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 0 vote down

Name: Uncommons Maths

Website: https://uncommons-maths.dev.java.net/

Purpose: Generics enabled CombinationGenerator! A Random seed generator

link|flag
vote up 10 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 41 vote down

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

link|flag
show 2 more comments
vote up 34 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 23 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 10 vote down

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

link|flag
vote up 0 vote down

MessAdmin, a fantastic HttpSession administration tool, and giving detailed statistics and informations on any Web application. It installs as a plug-in to any Java EE WebApp, and requires zero-code modification.

link|flag
vote up 0 vote down

Some of the stuff we used:

link|flag
show 1 more comment
vote up 48 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 11 vote down

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

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

Java Uuid Generator (JUG) for creating unique values..

http://jug.safehaus.org.

link|flag
1  
If you're using Java 1.5 or later you can simply use java.util.UUID.randomUUID() – Johan Pelgrim Sep 25 '08 at 15:07
show 1 more comment
vote up 12 vote down

Guess you all missed POI for interaction with MS Excel !

link|flag
vote up 2 vote down

Name: JFugue

Website: http://www.jfugue.org

Purpose: Playing music in one line of Java code

(Not the most business-minded library, but definitely great for being creative and programming for fun!)

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 4 vote down

OpenSymphony has a really nice set of various open source java projects. The ones I used and enjoyed:

  • Quartz - a full-featured job scheduling system
  • OSCache - a caching solution that includes a JSP tag library and set of classes to perform fine grained dynamic caching of JSP content, servlet responses or arbitrary objects.
  • OSCore - a set of utility-classes (manipulations with strings, dates, xml, etc)

Both Quartz and OSCache are well integrated with Spring.

link|flag
vote up 27 vote down

easymock for mock objects in unit tests.

link|flag

Your Answer

Get an OpenID
or

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