我懒的起名字
2018-12-25 11:59
File file2 = new File("C:\\Users\\涛某\\Desktop\\日常文件\\日记1.txt");
if (!file2.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}else {
file2.delete();
}
因为你文件不存在时,创建了新文件。存在时调用了delete会删除已存在文件,所以没有文件
文件传输基础——Java IO流
133754 学习 · 1030 问题
相似问题