What is the best way to generate a unique and short file name in Java

后端 未结 16 2387
不思量自难忘°
不思量自难忘° 2020-11-29 20:51

I don\'t necessarily want to use UUIDs since they are fairly long.

The file just needs to be unique within its directory.

One thought which comes to mind is

16条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-29 21:37

        //Generating Unique File Name
        public String getFileName() {
            String timeStamp = new SimpleDateFormat("yyyy-MM-dd_HH:mm:ss").format(new Date());
            return "PNG_" + timeStamp + "_.png";
        }
    

提交回复
热议问题