1、手机拍摄的照片(ExifInterface )
ExifInterface exifInterface = null;
try {
exifInterface = new ExifInterface(oldPath);
} catch (Exception e) {
e.printStackTrace();
}
String watermarkTime = exifInterface.getAttribute(ExifInterface.TAG_DATETIME);//ExifInterface方法只能获取到拍摄图片的时间,下载、截图、等其他方式获得的图片没有这个时间。
//返回值格式:yyyy:MM:dd HH:mm:ss
2、其他来源的图片(File)
如果不是手机自主拍摄的照片,通过ExifInterface 获取不到时间,可以通过File获取最后修改时间。
File file = new File(oldPath);
long modifieTime = file.lastModified();
watermarkTime = DateUtil.formatDate(modifieTime, "yyyy:MM:dd HH:mm:ss");
补充:获取File其他属性
File f = new File(path);
if (f.exists()) {
FileInputStream fis = null;
try {
fis = new FileInputStream(f);
String time = new SimpleDateFormat("yyyy-MM-dd")
.format(new Date(f.lastModified()));
System.out.println("文件文件创建时间" + time);
System.out.println("文件大小:" + ShowLongFileSzie(f.length()));// 计算文件大小
// B,KB,MB,
System.out.println("文件大小:" + fis.available() + "B");
System.out.println("文件名称:" + f.getName());
System.out.println("文件是否存在:" + f.exists());
System.out.println("文件的相对路径:" + f.getPath());
System.out.println("文件的绝对路径:" + f.getAbsolutePath());
System.out.println("文件可以读取:" + f.canRead());
System.out.println("文件可以写入:" + f.canWrite());
System.out.println("文件上级路径:" + f.getParent());
System.out.println("文件大小:" + f.length() + "B");
System.out.println("文件最后修改时间:" + new Date(f.lastModified()));
System.out.println("是否是文件类型:" + f.isFile());
System.out.println("是否是文件夹类型:" + f.isDirectory());
mTextView.setText("文件文件创建时间:" + time + "\n" + "文件大小:"
+ ShowLongFileSzie(f.length()) + "\n" + "文件名称:"
+ f.getName() + "\n" + "文件是否存在:" + f.exists() + "\n"
+ "文件的相对路径:" + f.getPath() + "\n" + "文件的绝对路径:"
+ f.getAbsolutePath() + "\n" + "文件可以写入:" + f.canWrite()
+ "\n" + "是否是文件夹类型:" + f.isDirectory());
} catch (Exception e) {
e.printStackTrace();
}
}
参考链接:https://blog.csdn.net/dickyqie/article/details/53945192