把temp.lastModified()获取得的long型转为时间:
SimpleDateFormat sdf=new SimpleDateFormat("yyy年MM月dd日hh点mm分");
Date date=new Date(temp.lastModified());
String d=sdf.format(date);
把temp.lastModified()获取得的long型转为时间:
SimpleDateFormat sdf=new SimpleDateFormat("yyy年MM月dd日hh点mm分");
Date date=new Date(temp.lastModified());
String d=sdf.format(date);