码迷,mamicode.com
首页 > 编程语言 > 详细

Java 文件重命名

时间:2019-04-03 12:46:41      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:sssss   exist   mss   ali   sts   date()   form   bsp   public   

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 文件重命名

标签:sssss   exist   mss   ali   sts   date()   form   bsp   public   

原文地址:https://www.cnblogs.com/lizm166/p/10647781.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!