You can build a specific date formatter, e.g.
SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd");
df.parse(
(etc)
So if it's reading the date correctly (by which I mean days are being read as days, and months are being read as months), then it's a simple matter of making a date formatter specific to the output you want.
e.g.
SimpleDateFormat df = new SimpleDateFormat("dd/mm/yyyy");
and then something like ... uh ...
String current_date = df.format(date_cell);
or if you need the cell formatter to read the value for you it'll be a little bit more complex.
As an aside:
Note that since SimpleDateFormat is relatively simple and easy to use it is probably deprecated and regarded as bad, evil and wrong (tm).
(For the reason that once you start introducing things like time zones, localization and differences between calendar systems things become complex very quickly (because the real world is messy) and simple answers are only good for the quick and dirty 'local' fix)