File中createNewFile()和createTempFile()區別

createNewFile()和createTempFile()區別: dom

爲了更好地測試,我建了兩個類: 函數

 

一、使用createNewFile()建立一個abc.txt的文件: 測試

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

 

 

控制檯輸出:
abc.txt spa

 

二、使用createTempFile()建立一個abc.txt的文件: get

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

 
控制檯輸出:
string

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

abc4825787091196303263.txt文件,每一次執行,都能生成不一樣的文件,但中間的數字都是19位,我查看了Java的File源代碼,按住Ctrl+鼠標左擊,進入File.class,看到有 io

Java代碼    收藏代碼
  1. private static 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.         return new File(dir, prefix + Long.toString(n) + suffix);  
  11.     }  

 

Java代碼    收藏代碼
  1.    public static File createTempFile(String prefix, String suffix,  
  2.                   File directory)  
  3.        throws IOException  
  4.    {  
  5. if (prefix == nullthrow new NullPointerException();  
  6. if (prefix.length() < 3)  
  7.     throw new 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); class

由此可明白爲何會生成abc4825787091196303263.txt文件了。 im

 

 

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

相關文章
相關標籤/搜索