-
-
Save jplazcano87/cf0fd6012908b50385c5a5131c7b9ab5 to your computer and use it in GitHub Desktop.
Methods for generating ISO 8601 timestamps in Java/Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.kristopherjohnson.util; | |
import java.text.DateFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
import java.util.Locale; | |
import java.util.TimeZone; | |
/** | |
* Methods for dealing with timestamps | |
*/ | |
public class TimestampUtils { | |
/** | |
* Return an ISO 8601 combined date and time string for current date/time | |
* | |
* @return String with format "yyyy-MM-dd'T'HH:mm:ss'Z'" | |
*/ | |
public static String getISO8601StringForCurrentDate() { | |
Date now = new Date(); | |
return getISO8601StringForDate(now); | |
} | |
/** | |
* Return an ISO 8601 combined date and time string for specified date/time | |
* | |
* @param date | |
* Date | |
* @return String with format "yyyy-MM-dd'T'HH:mm:ss'Z'" | |
*/ | |
private static String getISO8601StringForDate(Date date) { | |
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'", Locale.US); | |
dateFormat.setTimeZone(TimeZone.getTimeZone("UTC")); | |
return dateFormat.format(date); | |
} | |
/** | |
* Private constructor: class cannot be instantiated | |
*/ | |
private TimestampUtils() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment