Java程序修改文件名


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("修改失败");
  }
 }
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM