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

I'm trying to fetch timestamp values from a database, convert them to Calendar, and convert them back to Timestamp, but they lose their precision.

Here's the code to reproduce the problem

import java.sql.Timestamp;
import java.util.Calendar;

public class Test {
    public static void main(String[] args)
    {
        Timestamp timestamp = new Timestamp(112, 10, 5, 15, 39, 11, 801000000);
        System.out.println("BEFORE "+timestamp.toString());
        Calendar calendar = Calendar.getInstance();
        calendar.setTimeInMillis(timestamp.getTime());
        timestamp = new Timestamp(calendar.getTimeInMillis());
        System.out.println("AFTER "+timestamp.toString());
    }
}

Here is the sample result of conversion

BEFORE 2012-10-18 14:30:13.362001
AFTER 2012-10-18 14:30:13.362

It loses its precision. What do I do to keep the decimal value as it is?

share|improve this question
I have tried this in my ide but i did not get such result, every time it prints same - Calendar calendar = Calendar.getInstance(); Timestamp timestamp = new Timestamp(new Date().getTime()); System.out.println("1 -> "+timestamp); // Thread.currentThread().sleep(1000); calendar.setTimeInMillis(timestamp.getTime()); timestamp = new Timestamp(calendar.getTimeInMillis()); System.out.println("2 -> "+timestamp); – Subhrajyoti Majumder Nov 6 '12 at 9:35
Can you provide more context? Where do you get these timestamps, how do you output them? – axtavt Nov 6 '12 at 9:47
I've updated the example, I'm sorry the false result before was my fault. – William Nov 6 '12 at 10:04

1 Answer

up vote 7 down vote accepted

You are setting the time in milliseconds, but your input precision is in microseconds, so of course you are going to lose any precision finer than milliseconds.

Calendar doesn't support finer granularity than milliseconds. There is no work-around.

share|improve this answer
So, what's the workaround? – William Nov 6 '12 at 10:08
1  
@William There isn't one. See edited answer. – Bohemian Nov 6 '12 at 10:11
And there is no alternative class either? – William Nov 7 '12 at 3:44
@William JodaTime is the usual response, but it too only supports milliseconds. Your requirement is a bit unusual - consider using millisecond granularity (like everybody else) – Bohemian Nov 7 '12 at 7:12
Ok thanks for the answer. – William Nov 7 '12 at 7:49

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.