我已經使用此代碼創建了一個空文本文件,但它只存儲在項目文件夾中。我想知道如何使文本文件出現在桌面上?創建文本文件並使其顯示在桌面上
public void newFileCreator(String filename){
File ob = new File(filename + ".txt");
boolean filecreated = false;
try{
filecreated = ob.createNewFile();
}
catch(IOException e){
System.out.println("Error" + e);
}
if(filecreated = true){
System.out.println("Created empty file" + ob.getPath());
}
else{
System.out.println("Failed to create empty file" + ob.getPath());
}
}
給你的桌面的路徑,當你創建新的文件(「路徑」 +「TXT」) – 2014-10-10 08:03:15
你需要指定把文件放在「新文件(」/ home/user/desktop /「+文件名+」.txt「) – Adz 2014-10-10 08:03:23
這是Windows,Linux,Osx? – Leon 2014-10-10 08:03:59