1. 程式人生 > >File FilecreateNewFile()和createTempFile()的區別

File FilecreateNewFile()和createTempFile()的區別

createNewFile()和createTempFile()區別:

為了更好地測試,我建了兩個類:

1、使用createNewFile()建立一個abc.txt的檔案:

Java程式碼   收藏程式碼
  1. publicclass TestFile1 {  
  2.     publicstaticvoid main(String[] args) {  
  3.         File f1 = new File("C:\\abc.txt");  
  4.         try {  
  5.             f1.createNewFile();  
  6.             System.out.println(f1.getName());  
  7.         } catch (IOException e) {  
  8.             e.printStackTrace();  
  9.         }  
  10.     }  
  11. }  

控制檯輸出:
abc.txt

2、使用createTempFile()建立一個abc.txt的檔案:

Java程式碼   收藏程式碼
  1. publicclass TestFile2 {  
  2.     publicstaticvoid main(String[] args) {  
  3.         File f1 = new File("C:\\");  
  4.         File f2 = null;  
  5.         try
     {  
  6.             f2 = File.createTempFile("abc"".txt", f1);  
  7.             System.out.println(f2.getName());  
  8.         } catch (IOException e) {  
  9.             e.printStackTrace();  
  10.         }  
  11.     }  
  12. }  

 
控制檯輸出:

但是我查看了指定路徑,生成了

abc4825787091196303263.txt檔案,每一次執行,都能生成不同的檔案,但中間的數字都是19位,我查看了Java的File原始碼,按住Ctrl+滑鼠左擊,進入File.class,看到有

Java程式碼   收藏程式碼
  1. privatestatic File generateFile(String prefix, String suffix, File dir)  
  2.         throws IOException  
  3.     {  
  4.         long n = LazyInitialization.random.nextLong();  
  5.         if (n == Long.MIN_VALUE) {  
  6.             n = 0;      // corner case
  7.         } else {  
  8.             n = Math.abs(n);  
  9.         }  
  10.         returnnew File(dir, prefix + Long.toString(n) + suffix);  
  11.     }  
Java程式碼   收藏程式碼
  1. publicstatic File createTempFile(String prefix, String suffix,  
  2.                   File directory)  
  3.        throws IOException  
  4.    {  
  5. if (prefix == nullthrownew NullPointerException();  
  6. if (prefix.length() < 3)  
  7.     thrownew IllegalArgumentException("Prefix string too short");  
  8. String s = (suffix == null) ? ".tmp" : suffix;  
  9. if (directory == null) {  
  10.            String tmpDir = LazyInitialization.temporaryDirectory();  
  11.     directory = new File(tmpDir, fs.prefixLength(tmpDir));  
  12. }  
  13. SecurityManager sm = System.getSecurityManager();  
  14. File f;  
  15. do {  
  16.     f = generateFile(prefix, s, directory);  
  17. while (!checkAndCreate(f.getPath(), sm));  
  18. return f;  
  19.    }  

 注意函式generateFile()的返回值是new File(dir, prefix + Long.toString(n) + suffix);

由此可明白為什麼會生成abc4825787091196303263.txt檔案了。

但還有個問題,如果使用createTempFile()建立檔案時,中間的數字串是個問題,我還沒解決,朋友,你能解決麼?歡迎指導……

轉自:http://itssff-yahoo-cn.iteye.com/blog/966536