Parsing Time (or Text time) to Long
How can I parse time text to long ?Or time text to java.util.Date ?Let's say I have this:String time1 = "12:45:20";How can I put that in a java.util.Date ?
[216 byte] By [
Franziska] at [2007-11-26 19:51:25]

Er, what long? Date has the method long getTime() <quote>Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Date object.</quote>