将文件名格式设置为时间戳+随机数+文件名的格式
public String setFileName(String oldFileName) { /* * 时间戳 */ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMddHHmmssSS"); String time = simpleDateFormat.format(new Date()); /* * 随机数 */ Random random = new Random(); String randomName = String.valueOf(random.nextInt(1000)); return time+randomName+oldFileName; }