So I am coming back to Java after a few years of .NET programming and I am trying to update my Java knowledge but am having some problems with the now deprecated Date.parse() function that I once knew. I am trying to indiscriminately parse a string to a date. I do NOT want to have to use the SimpleDateFormtter where I need to specify every acceptable format. I just want to do what Date.parse(String anyStringFormat) to get epoch or new Date(String anyStringFormat) to get new date - what these guys used to do. Every document I keep getting directed to says I have to use the SimpleDateFormat with a specified date format. I do not wish to use a specific date format - what is the new way to do this without a specific date format? I must be missing something, as I can't imagine they would remove such a feature.
|
You're doing it wrong then. If you don't want to use SimpleDateFormat because you don't want to have to specify the exact date string format to use, you are free to implement your own subclass of edit: If you are sending a String to your database where it will be formatted anyway, then why even bother parsing a String into a |
|||||
|
|
You need to use There are too many options for date formats and you can't count on a method to try all of them. If you want to support more than one format, make a list of supported patterns. |
|||
|
|