Hi,
I am reading data from excel file and updating the sql table. When I read all the contents from excel file are in
String format. How do I change the string into Date.
For ex:
String s ='3/31/2003'
When I tried Date renew = new Date(s); it is not storing the correct date.
I need to insert 3/31/2003 into the DB table.
any suggestions?
thanks,