Here you can find the source of getTempFolder()
public static File getTempFolder()
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { private static final String TEST_CASES_LOCATION = "AlmHttpClientTestCases"; public static File getTempFolder() { return new File(System.getProperty("java.io.tmpdir"), TEST_CASES_LOCATION); //$NON-NLS-1$ }// www .j a v a 2s . c o m }