I want to get the format of a given date string.
Example: I have a string like 2011-09-27T07:04:21.97-05:00
and the date format of this string is yyyy-MM-dd'T'HH:mm:ss.SSS
.
Here I want to find out this date format when I pass string(2011-09-27T07:04:21.97-05:00
) to a method which will return the format(yyyy-MM-dd'T'HH:mm:ss.SSS
), then later I will format my given date string according to my requirement(like yy-mm--dd or mm/dd/yyyy
).
Can any one tell me how can I get it achieved?
If I understand you correctly, you want to parse arbitrary strings (that is, string of a format you don't know) as dates by using
DateFormat.parse()
? Then you have to deal with issues like how to handle01-02-03
(2 Jan 2003? 1 Feb 2003? etc.)You should know at least something about the expected format, like a choice of several predefined formats for your input.
You could try dateparser.
It can recognize any String automatically, and parse it into Date, Calendar, LocalDateTime, OffsetDateTime correctly and quickly(
1us~1.5us
).It doesn't based on any
natural language analyzer
orSimpleDateFormat
orregex.Pattern
.With it, you don't have to prepare any appropriate patterns like
yyyy-MM-dd'T'HH:mm:ss'Z'
orMM/dd/yyyy HH:mm:ss
etc:And it has better performance than loop-try multiple
SimpleDateFormat
.Please enjoy it.
I think you should try to parse input string with some predefine patterns. The one that works is the one you need. Remember that some patterns are quite tricky.
01.12.12 is 01 December 2012 in Europe but 12 January 2012 in USA. It could be 12 December 2001 too.
you can do like this way, I don't know good way or not but try this
first create the SimpleDateFormat object
now when check the date if this will parse in this format then change as per your format
updated post:
Returning a date format from an unknown format of date string in java
How to convert String to Date without knowing the format?
Parse any date in Java
You will need to take the inital date string and covert it to a date object and pass that converted date object and format it to your required string.