createNewFile()和createTempFile()區別: dom
爲了更好地測試,我建了兩個類: 函數
一、使用createNewFile()建立一個abc.txt的文件: 測試
Java代碼
- public class TestFile1 {
-
- public static void 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 spa
二、使用createTempFile()建立一個abc.txt的文件: get
Java代碼
- public class TestFile2 {
-
- public static void 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();
- }
- }
-
- }
控制檯輸出:
空 string
可是我查看了指定路徑,生成了 it
abc4825787091196303263.txt文件,每一次執行,都能生成不一樣的文件,但中間的數字都是19位,我查看了Java的File源代碼,按住Ctrl+鼠標左擊,進入File.class,看到有 io
Java代碼
- private static 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);
- }
- return new File(dir, prefix + Long.toString(n) + suffix);
- }
Java代碼
- public static File createTempFile(String prefix, String suffix,
- File directory)
- throws IOException
- {
- if (prefix == null) throw new NullPointerException();
- if (prefix.length() < 3)
- throw new 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); class
由此可明白爲何會生成abc4825787091196303263.txt文件了。 im
但還有個問題,若是使用createTempFile()建立文件時,中間的數字串是個問題,我還沒解決,朋友,你能解決麼?歡迎指導……