2013-04-10 23:57:08 -07:00
|
|
|
import java.io.File;
|
2015-11-18 06:14:39 +00:00
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
|
|
public class CreateTempFile {
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-04-10 23:57:08 -07:00
|
|
|
}
|