Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use setDate() in a PreparedStatement, however the date that I have is in the format of 2008-07-31. The code is:

 pstmt.setDate(f++, (Date) DateFormat.getDateInstance(DateFormat.DEFAULT).parse(value.substring(0, 10)));

However, it gives me the error:

Exception in thread "main" java.text.ParseException: Unparseable date: "2008-07-31"

Why is this?

share|improve this question
What is the default date format you are using? – anything Mar 29 '11 at 6:08

6 Answers

up vote 0 down vote accepted

You need make sure the default DateFormat is in yyyy-MM-dd format (usually it's a config in OS), or you can use SimpleDateFormat or java.sql.Date to parse date string.

java.util.Date d;
SimpleDateFormat sdf = new SimpleDateFormat ("yyyy-MM-dd");
d = sdf.parse ("2008-07-31");

// or
d = java.sql.Date.valueOf ("2008-07-31");

or, you could just set parameter as String, if the underlying database driver support the VARCHAR/CHAR to DATE conversion.

share|improve this answer

If you have a very specific date, don't ask Java to use a default date format - set it yourself.

For example:

DateFormat parser = new SimpleDateFormat("yyyy-MM-dd");
Date date = parser.parse(value.substring(0, 10));

You should also potentially set the time zone of the parser... my guess is that UTC is the most appropriate time zone here.

Note that this has nothing to do with prepared statements as such - it's just date parsing.

(As an alternative to using DateFormat and SimpleDateFormat, you could use Joda Time which has a nicer API and thread-safe formatters/parsers. You can ask Joda Time to convert from its own types to Date values. Possibly overkill if you only need it for parsing here, but if you're doing anything else with dates, it's well worth looking into.)

share|improve this answer

DateFormat.DEFAULT points to MEDIUM format and MEDIUM format looks like Jan 12, 1952. So, you may have create a SimpleDateFormat object with the format you are using.

share|improve this answer

I think there is mismatch in the format of the date that you are providing as input and the format in which you have specified while formatting which is default in your case.

SimpleDateFormat parser = new SimpleDateFormay("yyyy-MM-dd");

Try using the same format for both the dates.

share|improve this answer

First convert String to Date and then set that to PreparedStatement. Check with below code.

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-mm-dd"); 
Date convertedDate = dateFormat.parse(dateString);
share|improve this answer

I'd use

pstmt.setDate(f++, 
              new java.sql.Date(
                  new SimpleDateFormat("yyyy-MM-dd")
                      .parse(value.substring(0, 10))
                      .getTime()
                  )
             );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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