Skip to content

Instantly share code, notes, and snippets.

@seunggabi
Created September 3, 2019 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seunggabi/f329974dcf09550abfa382025b93b34d to your computer and use it in GitHub Desktop.
Save seunggabi/f329974dcf09550abfa382025b93b34d to your computer and use it in GitHub Desktop.
getDateTime.java
public static String getDateTime() {
Date from = new Date();
SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return transFormat.format(from);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment