Java
How to get the Temp Directory Path in Java?
Posted April 1st, 2008 by administrator in
The path to the temp directory in Java can be retreived via the sytem property as mentioned below:
System.getProperty("java.io.tmpdir");
The path to the temp directory in Java can be retreived via the sytem property as mentioned below:
System.getProperty("java.io.tmpdir");
|