标签:style blog ar color 使用 sp for strong on
1.由日期时间转化成字符串
Date date = new Date(); Format formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateString=formatter.format(date);
上述代码使用的是SimpleDateFormat的format函数
2.由字符串转化成日期时间
String dateStr1="20141216"; SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); Date date1 = sdf.parse(dateStr1);
上述代码使用的是SimpleDateFormat的parse函数。
3.得到几天前的日期
public static String getDateBefore(Date d, int day) { Calendar now = Calendar.getInstance(); now.setTime(d); now.set(Calendar.DATE, now.get(Calendar.DATE) - day); Format formatter = new SimpleDateFormat("yyyy-MM-dd"); return formatter.format(now.getTime()); }
标签:style blog ar color 使用 sp for strong on
原文地址:http://www.cnblogs.com/xiandedanteng/p/4166264.html