摘要: // 查看系统默认的临时文件路径 @Test public void test01(){ String path = System.getProperty("java.io.tmpdir"); System.out.println(path); } 阅读全文