I want to name new files created by my Java application with the current timestamp.
I need help with this. How do I name the new files created with the current timestamp
You can use DateTime
DateTime
import org.joda.time.DateTime
Option 1 : with yyyyMMddHHmmss
yyyyMMddHHmmss
DateTime.now().toString("yyyyMMddHHmmss")
Will give 20190205214430
20190205214430
Option 2 : yyyy-dd-M--HH-mm-ss
yyyy-dd-M--HH-mm-ss
DateTime.now().toString("yyyy-dd-M--HH-mm-ss")
will give 2019-05-2--21-43-32
2019-05-2--21-43-32