Let us take a look at how to rename files in Java with examples of Java 7, 8, 9 and 11, and 17.
Example: Java 7package org.code2care.java.examples;
import java.io.File;
public class FileRenameJava7 {
public static void main(String[] args) {
File oldFileName = new File("old_file.csv");
File newFileName = new File("new_file.csv");
if (oldFileName.renameTo(newFileName)) {
System.out.println("File renamed successfully.");
} else {
System.out.println("Failed to rename the file.");
}
}
}
Example: Java 8, 9 or 11
package org.code2care.java.examples;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
public class FileRenameJava8 {
public static void main(String[] args) throws IOException {
Path oldFilePath = Path.of("old_file.csv");
Path newFilePath = Path.of("new_file.csv");
Files.move(oldFilePath, newFilePath, StandardCopyOption.REPLACE_EXISTING);
System.out.println("File renamed successfully.");
}
}
Example: Java 17
package org.code2care.java.examples;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
public class FileRenameJava17 {
public static void main(String[] args) throws IOException {
Path oldFilePath = Path.of("old_file.csv");
Path newFilePath = Path.of("new_file.csv");
Path oldPath = Path.of("old.txt");
Path newPath = Path.of("new.txt");
Files.move(oldPath, newPath);
System.out.println("File renamed successfully.");
}
}
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- How to Change Mouse Wheel Scroll Direction on Mac - MacOS
- Add comma or semicolon at end of each line Notepad++ - NotepadPlusPlus
- Upgrade Gradle in Android Studio - Gradle
- Tailwind CSS Hello World Example - CSS
- How to stop MongoDB Server running on Ubuntu - Ubuntu
- [Fix] java: incompatible types: java.lang.String cannot be converted to int - Java
- Get count of SharePoint List or Document Library Items using PowerShell - SharePoint
- Fix: Eclipse Cant Connect to any repository not Authorized Error GitHub - Eclipse