vote up 123 vote down star
193

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

1 2 3 4 next
vote up 123 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
19  
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 19 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 37 vote down

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

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

link|flag
vote up 12 vote down

Name: JDOM

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

Purpose: XML DOM manipulation

link|flag
vote up 4 vote down

JTS Topology Suite: If you work with geographic data it's very useful. It's so useful, also C++-programmerswant it, so it was ported to C++, a library named GEOS (Geometry Engine Open Source).

link|flag
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 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 57 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 5 vote down
  • JiBX for XML data-binding.
  • JFreeChart Swing graphs and charts.
  • H2 pure Java embedable database engine.
link|flag
show 1 more comment
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 62 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 at 10:27
show 2 more comments
vote up 2 vote down

PCJ, Primitive Collections for Java.

This is a the fastest implementation of a Collections framework around primitive datatypes, providing for example Maps with ints as keys or Lists for floats. Much faster and more memory efficient than Sun's classes (where you have to use Integer and Float as wrappers with substantial cost), and also faster than its "competitors" fastutil and trove. Unfortunately no generics and not being maintained anymore - is stable though.

link|flag
vote up 52 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 2 vote down

JDOM, for java XML parsing
http://www.servlets.com/cos/ -- servlet utils including download/upload, etc
bindings to curl for http download/upload
code from the squirrel SQL client for accessing DBs
the original JDBC driver for accessing MySQL.

it takes a while to think about all the stuff that's been useful to you over the years.

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
show 1 more comment
vote up 2 vote down

Dozer mapping library, very usefule going from JPA generated classes to domain classes

link|flag
vote up 9 vote down

It is exceedingly useful to dynamically generate files from templates:

  • Velocity -- Generate text from templates (SQL queries, email, HTML, etc..)
  • jXLS -- Generate XLS files from templates
link|flag
vote up 24 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 28 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 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 19 vote down

Name: SwingLabs

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

Purpose: Extensions to Swing

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

Name: Lipermi

Website: http://lipermi.sourceforge.net/ WARNING: Use the CVS version for now, it fixes two major bugs.

Purpose: RMI alternative that uses only TCP. No more codebase urls!

link|flag
vote up 20 vote down

Name: Miglayout

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

Purpose: A powerful layout manager that just works

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

It is a bit subjective, something you can't live without might be useless for me... :-)

Anyway, here are some I bookmarked (I haven't used all of them!):

  • Batik -- SVG parser/viewer.
  • etlFTPj -- A FTP library.
  • TagSoup -- An HTML parser, able to handle the bad HTML we see in real world.
  • StringTemplate -- A (generic) template engine enforcing strict principles (no Turing-complete).
  • FreeMarker -- Another template engine, more procedural, still strict on document/view separation.

There is lot more, that's one of the strong points of Java...

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

Lucene for full text searches without a database.

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

JAXB is nice.

jFreeChart is great for charts.

Spring is also very nice.

link|flag
vote up 26 vote down

easymock for mock objects in unit tests.

link|flag
vote up 3 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 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 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
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.