一个批量修改文件名(包括子文件)的java代码
程序员文章站
2022-04-17 14:04:12
...
今天接到一个需求,要把近一千个文件上传到服务器,而且这些文件的命名还都是中文,作为码农当然不可能一个一个修改啦(讲道理,以前修改过一次,要吐了),那就写代码解决呗!
话不多说,直接上硬菜!
总体思路是这样的:先利用递归获取到路径下的所有文件,然后将这些数据倒序,通过for循环调用修改名称的方法。
1.引入jar包
<dependency>
<groupId>com.belerweb</groupId>
<artifactId>pinyin4j</artifactId>
<version>2.5.0</version>
</dependency>
2.上java代码,看注释,自我感觉挺详细的
package test;
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination;
/**
* 方法描述:
* 创建人:jxm
* 创建时间:2018/12/10 8:48
*/
public class Smain {
public static void main(String[] args) {
String path = "F:\\*学员证书\\小学数学";
try {
//获取路径下所有的文件
List<String> pathlist = traverseFolder2(path);
//将文件名倒序排列
Collections.reverse(childpaths);
System.out.println(childpaths);
for (int i = 0; i < pathlist.size(); i++) {
//获取这个文件的路径,不包含这个文件名称
String parentpath = pathlist.get(i).substring(0 ,pathlist.get(i).lastIndexOf("\\"));
System.out.println(pathlist.get(i));
//修改文件名 参数介绍 1.这个文件的路径,不包含文件名
//2.这个文件的原始名称(放到renameFile方法处理了)
//3.修改以后的文件名称
renameFile(parentpath, pathlist.get(i), toPinyin(pathlist.get(i)));
}
} catch (Exception e) {
e.printStackTrace();
}
}
private static List<String> childpaths = new ArrayList<>();
//递归获取文件夹下所有文件 包括子文件
public static List<String> traverseFolder2(String path) {
File file = new File(path);
if (file.exists()) {
File[] files = file.listFiles();
if (null == files || files.length == 0) {
System.out.println("文件夹是空的!");
return null;
} else {
for (File file2 : files) {
//获取这个文件的路径
String childpath = file2.getAbsolutePath();
//将文件路径添加到List里,注意:这里的List一定要是全局变量
childpaths.add(childpath);
//判断 如果是文件夹,则递归调用traverseFolder2()方法 再去这个文件夹下找文件,并且放到全局变量
if (file2.isDirectory()) {
//System.out.println("文件夹:" + file2.getAbsolutePath());
traverseFolder2(file2.getAbsolutePath());
} else {
//System.out.println("文件:" + file2.getAbsolutePath());
}
}
return childpaths;
}
} else {
System.out.println("文件不存在!");
return null;
}
}
public static String toPinyin(String chinese) {
String pinyin = "";
char[] newChar = chinese.toCharArray();
HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
defaultFormat.setCaseType(HanyuPinyinCaseType.LOWERCASE);
defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
for (int i = 0; i < newChar.length; i++) {
if (newChar[i] > 128) {
try {
pinyin += PinyinHelper.toHanyuPinyinStringArray(
newChar[i], defaultFormat)[0];
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
} else {
pinyin += newChar[i];
}
}
return pinyin;
}
public static void renameFile(String path,String oldname,String newname){
//获取这个文件的原始文件名
String oldname1 = oldname.substring(oldname.lastIndexOf("\\")+1);
//获取这个文件的新文件名
String newname1 = newname.substring(newname.lastIndexOf("\\")+1);
if(!oldname1.equals(newname1)){
File oldfile=new File(path+"\\"+oldname1);
File newfile=new File(path+"\\"+newname1);
if(!oldfile.exists()){
System.out.println("重命名文件不存在");
return;
}
if(newfile.exists())
System.out.println(newname1+"已经存在!");
else{
oldfile.renameTo(newfile);
System.out.println("OK");
}
}else{
System.out.println("命名重复...");
}
}
}
以上代码copy到你自己的编辑器,修改 String path = “F:\*学员证书\小学数学”; 为你自己的路径,直接运行即可。
注意:这个代码不识别特殊符号,而且代码还有很多优化的地方。