0
我試圖追加當前日期時間,文件名,並把它傳遞給創建文件的...所以基本上這是我的代碼追加日期時間和通過它來創建文件
public class Main {
//....
public static void main(String[] args) throws IOException
{
DateFormat dt = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();
String d =dt.format(date).toString();
String fname = "spy1";
File dir = new File("E:\\");
File f = new File(dir,fname+d+".txt");
if(f.createNewFile())
{
System.out.println("file creates");
}
else
{
System.out.println("file not created ");
}
}
}
這是我的代碼,請幫助我如何將當前日期時間附加到文件名並使用提到的目錄創建文件