Here you can find the source of tempFolder()
private static File tempFolder()
//package com.java2s; import java.io.File; public class Main { private static File tempFolder() { return new File(tempFolderName()); }//from ww w . j av a2 s. c o m private static String tempFolderName() { return System.getProperty("java.io.tmpdir"); } }