我创建的不是web工程,不过应该一样的:
@Test
public void testFile(){
try {
String pathStr = "abc/";
//测试默认默认目录是否存在,不存在则创建
if(!new File(pathStr).exists()){
new File(pathStr).mkdirs();
}
String path = pathStr+"cba.txt";
//生成新的文件存储到默认路径下
File newFile = new File(path);
newFile.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}