Skip to content

Instantly share code, notes, and snippets.

@kumbasar
Created January 3, 2019 07:37
Show Gist options
  • Save kumbasar/8849bbc8d9f64b92ad7ccbded0fc4609 to your computer and use it in GitHub Desktop.
Save kumbasar/8849bbc8d9f64b92ad7ccbded0fc4609 to your computer and use it in GitHub Desktop.
SimpleDateFormat in groovy
import java.text.SimpleDateFormat
def date = new Date()
sdf = new SimpleDateFormat("MMddyyyy-hhmmss")
println sdf.format(date)
@kumbasar
Copy link
Author

kumbasar commented Jan 3, 2019

Result: 01032019-083531

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment