Rename file

ReturnMethodSummary
booleanrenameTo(File dest)Renames the file denoted by this abstract pathname.

import java.io.File;

public class Main {

  public static void main(String[] args) {
    File file = new File("c:/a.htm");
    file.renameTo(new File("c:/abc.html"));
    
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.