aqui un ejemplo del manejo de la hora
Código PHP:
public static String getHoraLocal() {
Date today = new Date();
String result;
DateFormat formatter;
Locale currentLocale = new Locale("de", "DE");
formatter = DateFormat
.getTimeInstance(DateFormat.MEDIUM, currentLocale);
result = formatter.format(today);
return result;
}