Here you can find the source of mainTempDir()
static File mainTempDir()
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { static File mainTempDir() { File dir = new File(tempDir()); dir.mkdirs();/*from w w w. j a v a2s.c om*/ return dir; } private static String tempDir() { return System.getProperty("java.io.tmpdir") + "/doodleDebug"; } }