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
try this one
String fileSuffix = new SimpleDateFormat("yyyyMMddHHmmss").format(new Date());