File FilecreateNewFile()和createTempFile()的區別
阿新 • • 發佈:2019-01-01
createNewFile()和createTempFile()區別:
為了更好地測試,我建了兩個類:
1、使用createNewFile()建立一個abc.txt的檔案:
Java程式碼- publicclass TestFile1 {
- publicstaticvoid main(String[] args) {
- File f1 = new File("C:\\abc.txt");
- try {
- f1.createNewFile();
- System.out.println(f1.getName());
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
控制檯輸出:
abc.txt
2、使用createTempFile()建立一個abc.txt的檔案:
Java程式碼- publicclass TestFile2 {
- publicstaticvoid main(String[] args) {
- File f1 = new File("C:\\");
- File f2 = null;
- try
- f2 = File.createTempFile("abc", ".txt", f1);
- System.out.println(f2.getName());
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
控制檯輸出:
空
但是我查看了指定路徑,生成了
abc4825787091196303263.txt檔案,每一次執行,都能生成不同的檔案,但中間的數字都是19位,我查看了Java的File原始碼,按住Ctrl+滑鼠左擊,進入File.class,看到有
- privatestatic File generateFile(String prefix, String suffix, File dir)
- throws IOException
- {
- long n = LazyInitialization.random.nextLong();
- if (n == Long.MIN_VALUE) {
- n = 0; // corner case
- } else {
- n = Math.abs(n);
- }
- returnnew File(dir, prefix + Long.toString(n) + suffix);
- }
- publicstatic File createTempFile(String prefix, String suffix,
- File directory)
- throws IOException
- {
- if (prefix == null) thrownew NullPointerException();
- if (prefix.length() < 3)
- thrownew IllegalArgumentException("Prefix string too short");
- String s = (suffix == null) ? ".tmp" : suffix;
- if (directory == null) {
- String tmpDir = LazyInitialization.temporaryDirectory();
- directory = new File(tmpDir, fs.prefixLength(tmpDir));
- }
- SecurityManager sm = System.getSecurityManager();
- File f;
- do {
- f = generateFile(prefix, s, directory);
- } while (!checkAndCreate(f.getPath(), sm));
- return f;
- }
注意函式generateFile()的返回值是new File(dir, prefix + Long.toString(n) + suffix);
由此可明白為什麼會生成abc4825787091196303263.txt檔案了。
但還有個問題,如果使用createTempFile()建立檔案時,中間的數字串是個問題,我還沒解決,朋友,你能解決麼?歡迎指導……
轉自:http://itssff-yahoo-cn.iteye.com/blog/966536