How to Rename a File in Java
Java provides a built-in class java.io.File for standard file operations. This can be used for renaming files as well. The following example shows how a file can be renamed in Java. import java.io.File; /** * How to rename a file in Java 7 and below. * @author jj */ public class RenameFile1 { public static […]