应用程序需要写入文件的最后修改日期。
void Dater(String DateFile) {
File file = new File(DateFile);
if(file.exists()){
Long lastModified = file.lastModified();
Date date = new Date(lastModified);
textView2.setText(String.valueOf(date));
}
}
但是 textView2 是空的。文件没问题(我打开它)。
Dater("n" + String.valueOf(itemname)+".txt");