You need to use this command as part of running the program, not just java -Dkey=value
.
java -Djava.io.tmpdir=/temporary com.foo.Bar
where com.foo.Bar
is the class containing the main
method.
Alternatively, you can do this programmatically.
System.setProperty("java.io.tmpdir", "/temporary");
source share