是否可以将当前日期存储在文件中但不能作为字符串存储?
我的意思是说:
如果我使用:
SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy");
Date d=new Date();
String formattedDate=thedate.format(d);
date.add(formattedDate);
它将(以我想要的格式)存储在日期列表(这是一个字符串列表)中。
我希望“日期”成为日期列表并将其存储到文件中。
是否可以将其存储为 dd/MM/yyyy ?因为这样:
SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy");
Date d=new Date();
date.add(d);
它存储为
2013 年 4 月 18 日星期四 17:06:14 GMT+03:00