Create a temporary file in Java
Description
The following code shows how to create a temporary file.
Example
//www . ja v a 2s .co m
import java.io.File;
public class Main{
public static void main(String[] args) throws Exception{
File f = File.createTempFile("temp_", null);
System.out.println(f.getAbsolutePath());
f.deleteOnExit();
}
}
The code above generates the following result.