Here you can find the source of getTempFile()
public static File getTempFile() throws IOException
//package com.java2s; //License from project: Apache License import java.io.File; import java.io.IOException; public class Main { public static File getTempFile() throws IOException { return File.createTempFile("temp", Long.toString(System.nanoTime())); }/*from w ww . j a v a2s . c om*/ }