想通过提供用户输入来检查文件在运行时是否存在于特定路径,如果文件已经存在则写入文件,如果不存在则写入适当的消息,例如无法写入。
void writeFile(){
System.out.println("Enter file name to write in");
str = sc.next();
File f1 = new File("path",str);
if(f1.exists()){
try{
FileWriter fw = new FileWriter(f);
System.out.println("Enter what to write");
String str = sc.nextLine();
fw.write(str);
fw.flush();
System.out.println("Written inside file" + f);
}
catch(IOException e)
{
System.out.println("issue");
}
}
}