知道为什么即使在Windows环境下也能正常工作? 你能指点我的一些文件解释为什么这有效吗? 我试图寻找它没有结果。
package com.my.example;
import org.junit.Test;
import java.io.File;
public class TestPathCreation
{
@Test
public void testPathCreation() throws Exception {
final String path = "~/.my/dir";
System.out.println(path);
File f = new File(path);
System.out.println(f.mkdirs()); // true
}
}