Here you can find the source of getTempFile(final File stackFile)
public static File getTempFile(final File stackFile)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static File getTempFile(final File stackFile) { return new File("/tmp/" + stackFile.getName() + ".tmp"); }// w ww . j a v a 2 s .com }