Java程序修改文件名

时间:2014-07-07 11:08:20   收藏:0   阅读:242
package script;

import java.io.File;
import java.io.IOException;

public class Realname {

 public static void main(String[] args) throws IOException 
 {
 
  File oldFile = new File("d:/PMS");
  if(!oldFile.exists())
  {
   oldFile.createNewFile();
  }
  System.out.println("修改前文件名称是:"+oldFile.getName());
  String rootPath = oldFile.getParent();
  System.out.println("根路径是:"+rootPath);
  File newFile = new File(rootPath + File.separator + "PMSTmp");
  System.out.println("修改后文件名称是:"+newFile.getName());
  if (oldFile.renameTo(newFile)) 
  {
   System.out.println("修改成功!");
  } 
  else 
  {
   System.out.println("修改失败");
  }
 }
}

 

Java程序修改文件名,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!