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 parse an SQL date string (ISO 9075) and that uses microseconds(!) instead of milliseconds, for example

2010-11-22 08:08:08.123456

However, SimpleDateFormat refuses to recognize a pattern like "yyyy-MM-dd HH:mm:ss.SSSSSS" and "yyyy-MM-dd HH:mm:ss.SSS" does not work, either.

The code I am using looks something like this:

String dateString = "2010-11-22 08:08:08.123456";
String pattern = "yyyy-MM-dd HH:mm:ss.SSSSSS";

try
{
    format = new SimpleDateFormat(pattern);
    format.setLenient(false);
    position.setIndex(0);
    Date date1 = format.parse(dateString, position);
    System.out.println("Date 1: " + date1);
    Date date2 = format.parse(dateString);
    System.out.println("Date 2: " + date1);
}
catch (Exception e) // Should not happen
{
    e.printStackTrace();
}

Whichever of the 2 patterns (".SSS" or ".SSSSSS") I use, date1 is printer as null, whereas date2 causes a parsing exception (java.text.ParseException: Unparseable date).

share|improve this question

5 Answers

up vote 1 down vote accepted

Maybe chop the remaining fraction part out of the dateString before parse the date? I have the following

    String dateString = "2010-11-22 08:08:08.123456";
    String fraction = dateString.substring(dateString.length() - 3);
    String formatString = dateString.substring(0, dateString.length() - 3);
    String pattern = "yyyy-MM-dd HH:mm:ss.SSS";
    ParsePosition position = new ParsePosition(0);

    try
    {

        SimpleDateFormat format = new SimpleDateFormat(pattern);
        format.setLenient(false);
        position.setIndex(0);
        Date date1 = format.parse(formatString, position);          
        System.out.println("Date 1: " + date1);
        System.out.println("Date 1 fraction: " + fraction);
        Date date2 = format.parse(formatString);
        System.out.println("Date 2: " + date2);
        System.out.println("Date 2 fraction: " + fraction);
    }
    catch (Exception e) // Should not happen
    {
        e.printStackTrace();
    }

This allow the date to parse until millisecond precision while you still retain the fraction micro part.

share|improve this answer
Is the fractional/microsecond part guaranteed to be exactly 6 digits? E.g. will it be :08.123450 or will it be truncated to :08.12345 when ending in zero(s)? I'd probably look for the decimal and take 3 digits following it, rather than dropping length-3 depending on the answer. – Stephen P Nov 23 '11 at 17:19
You are right, that's exactly what I am doing. Thanks! – PNS Nov 23 '11 at 18:35
@StephenP that is a good question and good suggestion. If i understand correctly to achieve better interoperability, a standard is created and in this discussion, it is iso 9075. If the example end with 0, it should always come with zero. (I have not check in that iso 9075 yet) – Jasonw Nov 24 '11 at 1:17

Hmm. Given that Date doesn't have microsecond resolution, if you know that all the SQL date strings have the full six digits after the seconds decimal point (2010-11-22 08:08:08.000000 for example), why not just chop off the final three digits and use SimpleDateFormat on the remainder?

share|improve this answer

You may want to look at DATE4J which specifically tries to deal with database dates, to nanosecond precision.

share|improve this answer

You might want to call the DateFormat parse, because I think it will cut off the string. Try:

Date date1 = format.parse(dateString);

Plus, don't use "SSSSS". According to specs, only "SSS" is valid for dateformat.

Other than that, I agree with cutting it off or parsing in SQL.

Plus, you have setLenient to false, so it's strict. So the string, being longer is going to cause it to fail. Maybe that's why it returns null. Unsure, would have to test.

share|improve this answer

If you have control over the SQL date which is an input to the java code, you could try and retrieve the date from SQL in a format which will work ("yyyy-MM-dd HH:mm:ss.SSS").

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.