我问有一种方法可以将程序或bat文件或任何写入内容的文件放入其中,当他单击按钮时,它会创建我已放入项目中的文件到用户桌面上有没有办法?
File test = new File("C:/Users/"
+ System.getProperty("user.name")
+ "/AppData/Roaming/.minecraft/mods/welcome.txt");
try { test.createNewFile(); }
catch (IOException e1) { e1.printStackTrace(); }
这不起作用。
如果您要创建的文件已存在于磁盘中,那么您可以打印类似“文件已存在”的消息 -
try {
File file = new File("c:\\some\location\file_name.txt");
if (file.createNewFile()){
System.out.println("File is created!");
}else{
System.out.println("File already exists.");
}
}catch (IOException e) {
e.printStackTrace();
}
我是一名优秀的程序员,十分优秀!