> String s="01-12-1983"
>
> How can I converto this String into a date..
See
http://java.sun.com/j2se/1.5.0/docs/api/java/text/DateFormat.html#parse(java.lan
g.String)
- Oliver
>String s="01-12-1983"
>
>How can I converto this String into a date..
See http://mindprod.com/jgloss/calendar.html

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
Larry - 22 Mar 2006 21:27 GMT
This is the easiest way, but not a best practice since Date(String s)
is deprecated:
String s="01-12-1983"
Date myDate = new Date(s);