您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“java如何移動(dòng)文件并修改名稱(chēng)方式”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“java如何移動(dòng)文件并修改名稱(chēng)方式”這篇文章吧。
從source文件夾剪切1.txt,移動(dòng)到target文件夾,并重命名為2.txt
//從source文件夾剪切1.txt,移動(dòng)到target文件夾,并重命名為2.txt File startFile=new File("D:\\source\\1.txt"); File endFile=new File("D:\\target\\2.txt"); if (startFile.renameTo(endFile)) { System.out.println("文件移動(dòng)成功!目標(biāo)路徑:{"+endFile.getAbsolutePath()+"}"); } else { System.out.println("文件移動(dòng)失?。∑鹗悸窂剑簕"+startFile.getAbsolutePath()+"}"); }
* 需求:復(fù)制指定目錄下的指定文件,并修改后綴名。 * 指定的文件是:.java文件。 * 指定的后綴名是:.jad * 指定的目錄是:jad * * 數(shù)據(jù)源:e:\\java\\A.java * 目的地:e:\\jad\\A.jad * * 分析: * A: 封裝目錄 * B: 獲取該目錄下的java文件的File數(shù)組 * C: 遍歷該File數(shù)組,得到每一個(gè)File對(duì)象 * D: 把該File進(jìn)行復(fù)制 * E: 在目的地目錄下改名
package cn.itcast_04; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FilenameFilter; import java.io.IOException; /* * 需求:復(fù)制指定目錄下的指定文件,并修改后綴名。 * 指定的文件是:.java文件。 * 指定的后綴名是:.jad * 指定的目錄是:jad * * 數(shù)據(jù)源:e:\\java\\A.java * 目的地:e:\\jad\\A.jad * * 分析: * A:封裝目錄 * B:獲取該目錄下的java文件的File數(shù)組 * C:遍歷該File數(shù)組,得到每一個(gè)File對(duì)象 * D:把該File進(jìn)行復(fù)制 * E:在目的地目錄下改名 */ public class CopyFolderDemo { public static void main(String[] args) throws IOException { // 封裝目錄 File srcFolder = new File("e:\\java"); // 封裝目的地 File destFolder = new File("e:\\jad"); // 如果目的地目錄不存在,就創(chuàng)建 if (!destFolder.exists()) { destFolder.mkdir(); } // 獲取該目錄下的java文件的File數(shù)組 File[] fileArray = srcFolder.listFiles(new FilenameFilter() { @Override public boolean accept(File dir, String name) { return new File(dir, name).isFile() && name.endsWith(".java"); } }); // 遍歷該File數(shù)組,得到每一個(gè)File對(duì)象 for (File file : fileArray) { // System.out.println(file); // 數(shù)據(jù)源:e:\java\DataTypeDemo.java // 目的地:e:\\jad\DataTypeDemo.java String name = file.getName(); File newFile = new File(destFolder, name); copyFile(file, newFile); } // 在目的地目錄下改名 File[] destFileArray = destFolder.listFiles(); for (File destFile : destFileArray) { // System.out.println(destFile); // e:\jad\DataTypeDemo.java // e:\\jad\\DataTypeDemo.jad String name =destFile.getName(); //DataTypeDemo.java String newName = name.replace(".java", ".jad");//DataTypeDemo.jad File newFile = new File(destFolder,newName); destFile.renameTo(newFile); } } private static void copyFile(File file, File newFile) throws IOException { BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file)); BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(newFile)); byte[] bys = new byte[1024]; int len = 0; while ((len = bis.read(bys)) != -1) { bos.write(bys, 0, len); } bos.close(); bis.close(); } }
以上是“java如何移動(dòng)文件并修改名稱(chēng)方式”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。