标签:style creat list form blog valueof stat time format
public static String toDate(long s) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm"); // SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm"); Date date = new Date(s * 1000); return sdf.format(date); }
使用:
String d=CommUtil.toDate(Long.valueOf(list.get(position).create_time).longValue());
标签:style creat list form blog valueof stat time format
原文地址:http://www.cnblogs.com/heke-heke/p/6888214.html