Skip to content
Advertisement

Java parsing datetime from 12-hr format to 24-hr [closed]

I have this datetime sample 21-SEP-21 11.36.59.000 PM that I want to convert it by Java code to 24-hour format to the format "yyyy-MM-dd HH:mm:ss". I have tried the below code, but still didn’t work:

JavaScript

I want the correct parsing format for the above sample.

Advertisement

Answer

You have to use lower-case hh as the symbol for the hour of day in the pattern used to read/parse the input. In order to be able to distinguish ante meridiem (AM) from post meridiem (PM), you should include a, too. That would parse a full 12h format including AM/PM notation.

If you use the upper-case HH, you will have the 24h format.

You will also have to pay attention to the Locale used here and possibly to the fact that your abbreviation of the name of the month is in upper-case characters only.

See this alternative to the code you posted:

JavaScript

Using it in a main like this

JavaScript

will give you the output

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement