Just curious as to when System.getProperty("java.io.tmpdir")
returns "c:emp"
. According to the java.io.File Java Docs-
The default temporary-file directory is specified by the system property java.io.tmpdir. On UNIX systems the default value of this property is typically "/tmp" or "/var/tmp"; on Microsoft Windows systems it is typically "c:emp". A different value may be given to this system property when the Java virtual machine is invoked, but programmatic changes to this property are not guaranteed to have any effect upon the the temporary directory used by this method.
But in my case-
System.out.println(System.getProperty("java.io.tmpdir"));
Always returns-
C:UsersadminAppDataLocalTemp i.e. %TEMP%
In what conditions will it return "c:emp"
?
EDITED: If I change %TEMP% to C:Temp then I will get C:Temp, right? But the documentation shows c:Temp instead of C:Temp.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…