Possible Duplicate:
how to convert java string to Date object
I have a form in which I insert a time in the form of : 10:19 as a String. How can I convert this to the corresponding Time object?
I have a form in which I insert a time in the form of : 10:19 as a |
|||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You need to parse the string into a Date object. You could use SimpleDateFormat. |
|||
|
|
|
Use SimpleDateFormat object. Example:
|
||||
|
|
|
Use SimpleDateFormat that convert a string in a Calendar object or formats a Calendar object into a string |
|||
|
|
|
See the next links: Java string to date conversion http://www.roseindia.net/java/java-conversion/StringToDate.shtml It was just Google. |
|||
|
|