I want to name the new files which are created by my java application to the current timestamp.
I need help with this. How do i name the new file created as the current timestamp? Which classes should i include?
Thank you.
|
|
Use |
|||
|
|
|
No need to get too complicated, try this one liner:
|
|||
|
|
|
|
|||||
|
|
You can get current timestemp in to append with file name in the following way
String fileName = new Date().getTime() + '.txt';
|
|||
|
|