Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取存储在 android 手机上的图像的系统日期和时间,而不是图像的日期和时间。是否可以检索系统在手机上存储图像的日期和时间?
例如:我今天在我的手机中添加了一张 2007 年 6 月拍摄的图像,那么我可以获得今天的图像细节,即今天图像的存储日期和时间。?
谢谢
您似乎正在寻找文件创建日期。Android 不允许您检索它,但您可以从File对象中获取最后修改日期:
File
File file = new File(filePath); Date lastModifiedDate = new Date(file.lastModified()); Log.i("Last Modified Date : "+ lastModifiedDate.toString());
请记住,如果用户编辑文件,它将更改为编辑日期,而不是创建日期。