我正在使用
获取日期图像 int columnIndex = cursor.getColumnIndex(MediaStore.Images.Media.DATE_TAKEN);
String dateAdded = cursor.getString(columnIndex);
我得到的结果是dateFormat = 1430334035295
如何将dateAdded转换为正确的MM-dd-yyyy hh:mm:ss格式?
答案 0 :(得分:4)
String format = "MM-dd-yyyy HH:mm:ss";
SimpleDateFormat formatter = new SimpleDateFormat(format, Locale.ENGLISH);
String dateTime = formatter.format(new Date(Long.parseLong(dateAdded)));