I have the following requirement in the project.
I have a input field by name startDate and user enters in the format YYYY-MM-DD HH:MM:SS.
I need to add two hours for the user input in the startDate field. how can i do it.
Thanks in advance
|
|
You can use SimpleDateFormat to convert the String to Date. And after that you have two options,
Have a look to these tutorials. |
||||
|
|
|
Being a fan of the Joda Time library, here's how you can do it that way using a Joda
If you still need to use The Joda API provides so much more in the way of convenience over the Java Date/Calendar API. |
|||||||||||
|
|
Use the
|
|||||
|
|
||||
|
|
|
Try this one, I test it, working fine
If you want to convert in your input type than add this code also
|
|||
|
|