การสร้างไฟล์ชั่วคราวใน Java

ในการสร้างไฟล์ชั่วคราวนั้นใน Java ใช้ File.createTempFile ครับเรามาดูตัวอย่างกันเลย.
package demo.temporaryfile;

import java.io.File;
import java.io.IOException;

public class CreateTempFileExample {

    /**
     * @param args
     */
    public static void main(String[] args) {
        try {
            // create a temp file
            File temp = File.createTempFile("temp-file-name", ".tmp");
            System.out.println("Temp file : " + temp.getAbsolutePath());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
ผลลัพธ์ที่ได้คือ
Temp file : C:\Users\NOPPHA~1\AppData\Local\Temp\temp-file-name7448230744393160128.tmp

About Nop

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

0 comments:

Post a Comment