การคืนค่า path ของไฟล์ชั่วคราวใน Java

ต่อไปนี้เป็นตัวอย่างการคืนค่า path ของไฟล์ชั่วคราวใน Java ครับ
package demo.temporaryfile;

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

public class GetTempFilePathExample {

    /**
     * @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());

            // Get tempropary file path
            String absolutePath = temp.getAbsolutePath();
            String tempFilePath = absolutePath.substring(0,
                    absolutePath.lastIndexOf(File.separator));

            System.out.println("Temp file path : " + tempFilePath);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
ผลลัพธ์ที่ได้คือ
Temp file : C:\Users\NOPPHA~1\AppData\Local\Temp\temp-file-name6099736514245173761.tmp
Temp file path : C:\Users\NOPPHA~1\AppData\Local\Temp

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