how to convert yyyy-MM-dd HH:mm:ss to java.sql.Date

S

sh

hi,

how to convert date in this format yyyy-MM-dd HH:mm:ss to
java.sql.Date



if i use directly like this java.sql.Date.valueOf(processDate)

am getting exception java.lang.NumberFormatException: For input
string: "02 19:51:51"


if anybody knows reply back immedietely.

thanks in advance
 
W

www

sh said:
hi,

how to convert date in this format yyyy-MM-dd HH:mm:ss to
java.sql.Date



if i use directly like this java.sql.Date.valueOf(processDate)

am getting exception java.lang.NumberFormatException: For input
string: "02 19:51:51"



SimpleDateFormat myFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date myDate = new Date(myFormat.parse(your_time_string).getTime());
//need try-catch block

BWY, why you input "02 19:51:51"? It should be "2002-xx-xx 19:51:51",
based on your SimpleDateFormat.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top