- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
private static String formatDateFull(Calendar date) {
if (date == null)
return " ";
else
try {
return dateOutFormatFull.format(date.getTime());
} catch(Exception ex) {
return " ";
}
}
private static final SimpleDateFormat dateOutFormatFull = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss.SSS");