Java 文件重命名
Posted lizm166
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 文件重命名相关的知识,希望对你有一定的参考价值。
Java 文件重命名
/** * 重命名文件 * @param fileName * @return */ public static void renameFile(String filePath, String fileName) { SimpleDateFormat fmdate = new SimpleDateFormat("yyyyMMddHHmmssSSS"); String oldFileName = filePath+"/"+fileName; File oldFile = new File(oldFileName); String newFileName = filePath+"/"+fileName.split("\\.")[0]+fmdate.format(new Date())+"."+fileName.split("\\.")[1]; File newFile = new File(newFileName); if (oldFile.exists() && oldFile.isFile()) { oldFile.renameTo(newFile); } }
以上是关于Java 文件重命名的主要内容,如果未能解决你的问题,请参考以下文章