How do I get operating system temporary directory / folder?

Date: 2010-09-16. Category: java.lang examples. Hits: 52K time(s).
package org.kodejava.example.lang;

public class TempDirExample 
{
    public static void main(String[] args)
    {
        // This is the property name for accessing OS temporary directory or
        // folder.
        String property = "java.io.tmpdir";
        
        // Get the temporary directory and print it.
        String tempDir = System.getProperty(property);
        System.out.println("OS current temporary directory is " + tempDir);
    }
}