i need to change the date format using java from
dd/MM/yyyy to yyyy/MM/dd
|
|
|
How to convert from one date format to another using SimpleDateFormat:
|
||||
|
|
This should do the trick |
|||
|
|
|
Use SimpleDateFormat
Complete Example:
|
||||
|
|
|
Or you could go the regex route:
It works both ways too. Of course this won't actually validate your date and will also work for strings like "21432/32423/52352". You can use |
|||||
|