📜  在用户主目录中的 java 中创建文件 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:22.608000             🧑  作者: Mango

代码示例1
String path = System.getProperty("user.home") + File.separator + "Documents";
File customDir = new File(path);