createTempFile文件路徑如何獲取

小樊
136
2024-07-04 04:34:45
欄目: 編程語言

在Java中,可以使用以下方法獲取臨時(shí)文件的路徑:

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

public class Main {
    public static void main(String[] args) {
        try {
            // 創(chuàng)建臨時(shí)文件
            File tempFile = File.createTempFile("temp", ".txt");
            
            // 獲取臨時(shí)文件的路徑
            String tempFilePath = tempFile.getAbsolutePath();
            System.out.println("臨時(shí)文件的路徑:" + tempFilePath);
            
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

在上面的代碼中,先使用File.createTempFile()方法創(chuàng)建一個(gè)臨時(shí)文件,然后通過tempFile.getAbsolutePath()方法獲取該臨時(shí)文件的路徑。

0