Java io.tempdir在ubuntu上返回null?

时间:2016-02-29 21:18:36

标签: java ubuntu

我尝试了什么:

class TempDir { public static void main (String[] args) { System.out.println(System.getProperty("java.io.tempdir")); } }

我需要保持脚本与Windows和Linux一致,windows返回临时目录但是,ubuntu返回null,我不知道为什么?

1 个答案:

答案 0 :(得分:0)

System.out.println(System.getProperty("java.io.tmpdir"));

在我的Ubuntu系统上打印/ tmp,所以看起来你拼错了属性名称。