Showing posts with label TImezone. Show all posts
Showing posts with label TImezone. Show all posts

Wednesday, 4 May 2016

UtcDate -JAVA


public static  Date getUtcDate(Date date) {
   
SimpleDateFormat sdf = new SimpleDateFormat(TIMESTAMP);

sdf.setTimeZone(TimeZone.getTimeZone("UTC"));

Date utcDate = new Date(sdf.format(date));

return utcDate;

}