/**
* 生成随机图片文件名,"年月日时分秒"格式
*/
String randomFileName() {
Date date = new Date(System.currentTimeMillis());
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMddHHmmss");
String fileName = simpleDateFormat.format(date);
return fileName;
}
用这个方法返回的字符串拼接上文件原来的文件名, 就可以比较方便地