java重命名文件夾
『壹』 java中怎麼重命名一個文件
File f = new File("d:/aaa.txt");//想命名的原文件
f.renameTo(new File("d:/bbb.txt"));將原文件更改為bbb.txt,其中路徑是必要的 注意
『貳』 在Java中對文件的重命名批處理解決辦法如何截取文件名中的部分內容做為新名字
操作簡單點,直接截取掉[和]之間的部分。用split來操作。
Strings="阿寶-走西口[www.cccc.cn].avi";
Stringtemp=s.split("\[")[0]+s.split("\]")[1];
System.out.println(temp);//阿寶-走西口.avi
『叄』 java 文件重命名的原理有效率高的辦法嗎
調用操作系統api重名文件就是最效率的辦法。java應該就是採用的這種辦法。
『肆』 java 怎麼給文件重命名
java修改文件名可以直接通過右鍵文件名「Rename」實現。
第一步:找到要修改的文件名位置。
第二步:在文件上右擊,選擇「Refactor」下的「Rename」。
第三步:輸入新文件名後,點擊「確定」即可完成修改操作。
『伍』 java如何重命名一個文件
/**
* 修改文件名
* @param oldFilePath 原文件路徑
* @param newFileName 新文件名稱
* @param overriding 判斷標志(如果存在相同名的文件是否覆蓋)
* @return
*/
public static boolean renameFile(String oldFilePath,String newFileName,boolean overriding){
File oldfile = new File(oldFilePath);
if(!oldfile.exists()){
return false;
}
String newFilepath = oldfile.getParent()+File.separator+newFileName;
File newFile = new File(newFilepath);
if(!newFile.exists()){
return oldfile.renameTo(newFile);
}else{
if(overriding){
newFile.delete();
return oldfile.renameTo(newFile);
}else{
return false;
}
}
}
原文鏈接:網頁鏈接
如有幫助請採納(不懂請提問),可以看我主頁,歡迎來交流學習;
『陸』 Java編程對批量文件重命名
importjava.io.File;
importjava.util.regex.Matcher;
importjava.util.regex.Pattern;
publicclassTest
{
publicstaticvoidmain(String[]args)throwsException
{
Filedir=newFile("d:/test");//此處表示你要改的文件所在的文件夾,也修改為其它文件夾,或者當前文件夾newFile(".")
File[]files=dir.listFiles();
StringfileName=null;
StringparentPath=dir.getAbsolutePath();
Patternp=Pattern.compile("廣東-(廣州\d+\.txt)");
Matcherm=null;
for(Filefile:files)
{
fileName=file.getName();
m=p.matcher(fileName);
if(m.matches())
{
file.renameTo(newFile(parentPath+File.separator+m.group(1)));
}
}
}
}
『柒』 java中對文件怎麼重命名
file
f
=
new
file("d:/aaa.txt");//想命名的原文件
f.renameto(new
file("d:/bbb.txt"));將原文件更改為bbb.txt,其中路徑是必要的
注意