They both have their main strength and will both be sufficient to fill your needs. Here is my own little comparison with both hopefully will allow you to choose.
Maven
The more advanced of the two and certainly one of the most advanced build tool I have used. But to call it a built tool is not truly describing it as one of the most innovative feature of Maven is about dependency Management. In short it will handle all the mucking around with external libraries, it will download them for you it will validate that their dependencies are also resolved and downloaded, in short it will handle a lot of the greasy details of building a complex system.
Maven also relies heavily on conventions on how you layout your project's folders for source code, resources, tests etc. Follow these conversions and it magically just work (tm). Try to be smarter than them and it will give you pains beyond comprehension. I exaggerated a bit here, V3 has gotten a lot more friendly than the previous ones but it will leave you sometimes scratching your head.
Still these convention make it possible to create a project very quickly and with a few declarations in your pom.xml (the build entry point) you will be able to build your project, run all your tests and package a jar file just by issuing a single command line statement (mvn clean package). No scripting, no programming just follow convention.
Another side effect of these conventions is that all Maven projects are basically created the same so getting a new guy to join in or digging deeper in one dependency that is acting up is a breeze.
Magic is probably the worst aspect of working with maven. If you are a control freak Maven will often throw you off balance. But sticking to it and understanding the magic will richly reward you with overall greatly increased productivity.
Ant
Ant is more ancient than Maven and does not handle as much. Ant will have pre-packaged a lot of task that you must manually assemble into a build script. The script is a mix between declarative xml and scripting. the Ant scripting is actually Turing complete so you can do a lot with it but XML is not the best medium to write complex scripting logic.
Ant will leave you in control and will provide lots of canned stuff for you already. However this control comes at a cost and you will have to get the ground work and frame your build environment.
Ant also does not, at least not naturally, handle dependencies. to it it is just another classpath folder that you must populate manually. there are ways to handle this though through other systems such as Ivy.
Ant with Ivy will provide almost all the power of Maven but will leave you much more control over your process.
That said once the build framing is done Ant is pretty easy to use and if you structured your build.xml files right is pretty easy to expand and scale. frame your build wrong though and you find yourself having to re-write everything from scratch just to support that second project.
Best of both worlds
Go with Maven as it will demand just about the same amount of work to setup as a tool but will get you going much faster.
Do read the Maven book it has all you need to get started. If at some point you need more control you can check out the Maven Antrun plugin. It will allow you to execute arbitrary ant script while still have access to all the Maven environment and conventions. That said, most likely you will not need it. Personally I've been using Maven for 6 years and only once had to use it.
There are other build tools for Java but these two (along with Ivy to complement Ant) but I have not tried them so I cannot comment them here.