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

Java修改文件名称

时间:2015-02-26 00:03:32      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:java

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

public class Rename {

 public static void main(String[] args) throws IOException 
 {
 
  File oldFile = new File("d:/1.Out");
  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 + "1.Out.back");
  System.out.println("修改后:"+newFile.getName());
  if (oldFile.renameTo(newFile)) 
  {
   System.out.println("修改成功!!!");
  } 
  else 
  {
   System.out.println("修改失败!!!");
  }
 }
}


Java修改文件名称

标签:java

原文地址:http://8757576.blog.51cto.com/8747576/1615208

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