Here you can find the source of getTempDirectoryPathString()
public static String getTempDirectoryPathString()
//package com.java2s; //License from project: Open Source License public class Main { /**//from w ww . java2s .c o m * Getting a string object of the temporal directory which is referrenced by * {@code System.getProperty("java.io.tmpdir")}. * * @return */ public static String getTempDirectoryPathString() { return System.getProperty("java.io.tmpdir"); } }