I need to get the field AM/PM in date object. How can i get it?
This is my code.
String startTime ="01:05 PM";
SimpleDateFormat sdf = new SimpleDateFormat("hh:mm aa");
Date st = sdf.parse(startTime);
|
I need to get the field AM/PM in date object. How can i get it? This is my code.
|
|||
|
|
|
You could use a
Make sure you don't have a time zone mismatch when you do this. |
|||
|
|
|
Calendar is probably best, but you could use DateFormat, too:
The TimeZone caveat also applies here. |
|||
|
|