java建立文件和目錄

[java] view plaincopyjava

  1. 建立文件和目錄的關鍵技術點以下:  spa

[java] view plaincopy.net

  1.    1、File類的createNewFile根據抽象路徑建立一個新的空文件,當抽象路徑制定的文件存在時,建立失敗  code

  2.     2、File類的mkdir方法根據抽象路徑建立目錄  blog

  3.     3、File類的mkdirs方法根據抽象路徑建立目錄,包括建立必需但不存在的父目錄  get

  4.     4、File類的createTempFile方法建立臨時文件,能夠制定臨時文件的文件名前綴、後綴及文件所在的目錄,若是不指定目錄,則存放在系統的臨時文件夾下。  it

  5.     5、除mkdirs方法外,以上方法在建立文件和目錄時,必須保證目標文件不存在,並且父目錄存在,不然會建立失敗  io

  6.      

  7. 實例演示  class



[java] view plaincopyimport

  1. package book.io;  

  2.   

  3. import java.io.File;  

  4. import java.io.IOException;  

  5.   

  6. public class CreateFileUtil {  

  7.      

  8.     public static boolean createFile(String destFileName) {  

  9.         File file = new File(destFileName);  

  10.         if(file.exists()) {  

  11.             System.out.println("建立單個文件" + destFileName + "失敗,目標文件已存在!");  

  12.             return false;  

  13.         }  

  14.         if (destFileName.endsWith(File.separator)) {  

  15.             System.out.println("建立單個文件" + destFileName + "失敗,目標文件不能爲目錄!");  

  16.             return false;  

  17.         }  

  18.         //判斷目標文件所在的目錄是否存在  

  19.         if(!file.getParentFile().exists()) {  

  20.             //若是目標文件所在的目錄不存在,則建立父目錄  

  21.             System.out.println("目標文件所在目錄不存在,準備建立它!");  

  22.             if(!file.getParentFile().mkdirs()) {  

  23.                 System.out.println("建立目標文件所在目錄失敗!");  

  24.                 return false;  

  25.             }  

  26.         }  

  27.         //建立目標文件  

  28.         try {  

  29.             if (file.createNewFile()) {  

  30.                 System.out.println("建立單個文件" + destFileName + "成功!");  

  31.                 return true;  

  32.             } else {  

  33.                 System.out.println("建立單個文件" + destFileName + "失敗!");  

  34.                 return false;  

  35.             }  

  36.         } catch (IOException e) {  

  37.             e.printStackTrace();  

  38.             System.out.println("建立單個文件" + destFileName + "失敗!" + e.getMessage());  

  39.             return false;  

  40.         }  

  41.     }  

  42.      

  43.      

  44.     public static boolean createDir(String destDirName) {  

  45.         File dir = new File(destDirName);  

  46.         if (dir.exists()) {  

  47.             System.out.println("建立目錄" + destDirName + "失敗,目標目錄已經存在");  

  48.             return false;  

  49.         }  

  50.         if (!destDirName.endsWith(File.separator)) {  

  51.             destDirName = destDirName + File.separator;  

  52.         }  

  53.         //建立目錄  

  54.         if (dir.mkdirs()) {  

  55.             System.out.println("建立目錄" + destDirName + "成功!");  

  56.             return true;  

  57.         } else {  

  58.             System.out.println("建立目錄" + destDirName + "失敗!");  

  59.             return false;  

  60.         }  

  61.     }  

  62.      

  63.      

  64.     public static String createTempFile(String prefix, String suffix, String dirName) {  

  65.         File tempFile = null;  

  66.         if (dirName == null) {  

  67.             try{  

  68.                 //在默認文件夾下建立臨時文件  

  69.                 tempFile = File.createTempFile(prefix, suffix);  

  70.                 //返回臨時文件的路徑  

  71.                 return tempFile.getCanonicalPath();  

  72.             } catch (IOException e) {  

  73.                 e.printStackTrace();  

  74.                 System.out.println("建立臨時文件失敗!" + e.getMessage());  

  75.                 return null;  

  76.             }  

  77.         } else {  

  78.             File dir = new File(dirName);  

  79.             //若是臨時文件所在目錄不存在,首先建立  

  80.             if (!dir.exists()) {  

  81.                 if (!CreateFileUtil.createDir(dirName)) {  

  82.                     System.out.println("建立臨時文件失敗,不能建立臨時文件所在的目錄!");  

  83.                     return null;  

  84.                 }  

  85.             }  

  86.             try {  

  87.                 //在指定目錄下建立臨時文件  

  88.                 tempFile = File.createTempFile(prefix, suffix, dir);  

  89.                 return tempFile.getCanonicalPath();  

  90.             } catch (IOException e) {  

  91.                 e.printStackTrace();  

  92.                 System.out.println("建立臨時文件失敗!" + e.getMessage());  

  93.                 return null;  

  94.             }  

  95.         }  

  96.     }  

  97.      

  98.     public static void main(String[] args) {  

  99.         //建立目錄  

  100.         String dirName = "D:/work/temp/temp0/temp1";  

  101.         CreateFileUtil.createDir(dirName);  

  102.         //建立文件  

  103.         String fileName = dirName + "/temp2/tempFile.txt";  

  104.         CreateFileUtil.createFile(fileName);  

  105.         //建立臨時文件  

  106.         String prefix = "temp";  

  107.         String suffix = ".txt";  

  108.         for (int i = 0; i < 10; i++) {  

  109.             System.out.println("建立了臨時文件:"  

  110.                     + CreateFileUtil.createTempFile(prefix, suffix, dirName));  

  111.         }  

  112.         //在默認目錄下建立臨時文件  

  113.         for (int i = 0; i < 10; i++) {  

  114.             System.out.println("在默認目錄下建立了臨時文件:"  

  115.                     + CreateFileUtil.createTempFile(prefix, suffix, null));  

  116.         }  

  117.     }  

  118.   

  119. }  

  120. 輸出結果:  

  121.   

  122.   

  123. 建立目錄D:/work/temp/temp0/temp1成功!  

  124. 目標文件所在目錄不存在,準備建立它!  

  125. 建立單個文件D:/work/temp/temp0/temp1/temp2/tempFile.txt成功!  

  126. 建立了臨時文件:D:work emp emp0 emp1 emp5171.txt  

  127. 建立了臨時文件:D:work emp emp0 emp1 emp5172.txt  

  128. 建立了臨時文件:D:work emp emp0 emp1 emp5173.txt  

  129. 建立了臨時文件:D:work emp emp0 emp1 emp5174.txt  

  130. 建立了臨時文件:D:work emp emp0 emp1 emp5175.txt  

  131. 建立了臨時文件:D:work emp emp0 emp1 emp5176.txt  

  132. 建立了臨時文件:D:work emp emp0 emp1 emp5177.txt  

  133. 建立了臨時文件:D:work emp emp0 emp1 emp5178.txt  

  134. 建立了臨時文件:D:work emp emp0 emp1 emp5179.txt  

  135. 建立了臨時文件:D:work emp emp0 emp1 emp5180.txt  

  136. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5181.txt  

  137. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5182.txt  

  138. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5183.txt  

  139. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5184.txt  

  140. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5185.txt  

  141. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5186.txt  

  142. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5187.txt  

  143. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5188.txt  

  144. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5189.txt  

  145. 在默認目錄下建立了臨時文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5190.txt  

相關文章
相關標籤/搜索