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
| |||||||||||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
You need to parse the string into a Date object. You could use SimpleDateFormat. | |||
|
feedback
|
|
Use SimpleDateFormat object. Example:
| ||||
|
feedback
|
|
Use SimpleDateFormat that convert a string in a Calendar object or formats a Calendar object into a string | |||
|
feedback
|
|
See the next links: Java string to date conversion http://www.roseindia.net/java/java-conversion/StringToDate.shtml It was just Google. | |||
|
feedback
|