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?

link|improve this question

72% accept rate
What happened to using Google these days? – The Elite Gentleman Jul 14 '11 at 7:24
@Gentleman no reason to downvote this. every question on stackoverflow can be answered by using a search-engine yourself and the level at which you can do this only depends on your experience, easy questions are not a bad thing i think – eznme Jul 14 '11 at 7:27
@eznme, I never downvoted this question or any question that requires search-engine searches. Neither did I request to close this question. Don't just assume that everyone that comments, do downvote or vote to close the question. – The Elite Gentleman Jul 14 '11 at 7:30
3  
@Sergiu, we are not against easy post. Many post, like the one you posted, have already been answered before. We suggest looking at *Related * section (right-side of this post) to see if any of the past quesstions were answered. Also, Google search definitely can come up with results that fit your criteria1 :-D – The Elite Gentleman Jul 14 '11 at 7:54
show 1 more comment
feedback

closed as exact duplicate by Marek Grzenkowicz, Carlos Heuberger, Ken White, Bill the Lizard Jul 14 '11 at 12:36

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.

4 Answers

up vote 3 down vote accepted

You need to parse the string into a Date object. You could use SimpleDateFormat.

link|improve this answer
feedback

Use SimpleDateFormat object.

Example:

DateFormat df = new SimpleDateFormat("HH:mm"); 
Date time;
try {
    time = df.parse("10:19");
} catch (ParseException e) {
    e.printStackTrace();
}
link|improve this answer
feedback

Use SimpleDateFormat that convert a string in a Calendar object or formats a Calendar object into a string

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.