I have a String in the Format dd.MM.yy HH:mm
e.g. 12.04.14 07:00
.
I convert that String into a Date object with the lines:
SimpleDateFormat sdfToDate = new SimpleDateFormat("dd.MM.yy HH:mm");
Date date_new = sdfToDate.parse(date);
But then the Date is in the following Format:
Apr 12, 2014 7:00:00 AM
I need to display 24h Time. How I can do that?