or you take the simple way:
public static String getRightNow() {
Date date = new Date(System.currentTimeMillis());
SimpleDateFormat formatter = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss");
return formatter.format(date);
}
but the code below looks really cool