Here you can find the source of getTempDir(String path)
public static File getTempDir(String path) throws Exception
//package com.java2s; import java.io.File; public class Main { public static File getTempDir(String path) throws Exception { File tempdir = new File(System.getProperty("java.io.tmpdir"), path); tempdir.mkdirs();/*from w w w. j a va 2 s . c o m*/ return tempdir; } }