Here you can find the source of getTempDir()
public static String getTempDir()
//package com.java2s; public class Main { public static final String TEMP_DIR = "java.io.tmpdir"; /**/*from w ww . j av a2 s .com*/ * Returns system temp dir. */ public static String getTempDir() { return System.getProperty(TEMP_DIR); } }