a place for you as a java learner and anyone interesting in programming.
Pages
Home
Tips for java dummies
ASk Your Question ?
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;
}
Home
Subscribe to:
Posts (Atom)