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会删除已存在文件,所以没有文件