android studio 日期的常用處理,時(shí)間戳,時(shí)間計(jì)算,獲取每月第一天等
時(shí)間搓 獲取當(dāng)前時(shí)間戳
?Timestamp now = new Timestamp(System.currentTimeMillis());//獲取系統(tǒng)當(dāng)前時(shí)間
?Log.d("index_Fragment", "now:" + now);
? //返回結(jié)果精確到毫秒。
另外一種帶格式的寫法?
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy年MM月dd日 HH:mm:ss ");
Date curDate = new Date(System.currentTimeMillis());
?String str = formatter.format(curDate);
--------------------------我是分割線--------------------------------------------
日期相互加減
public class Demo {
public static void main(String[] args) throws ParseException {
String s1="2016-1-2";
String s2="2016-1-1";
DateFormat df=new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar=new GregorianCalendar();
Date d1=df.parse(s1);
Date d2=df.parse(s2);
System.out.println((d1.getTime()-d2.getTime())/(60*60*1000*24));
}
}
--------------------------我是分割線--------------------------------------------
? ? /**
? ? ?* 得到本月的第一天
? ? ?*/
? ? public static String getMonthFirstDay() {
? ? ? ? Calendar calendar = Calendar.getInstance();
? ? ? ? calendar.set(Calendar.DAY_OF_MONTH, calendar
? ? ? ? ? ? ? ? .getActualMinimum(Calendar.DAY_OF_MONTH));
//? ? ? ? calendar.set( Calendar.DATE, 1);
? ? ? ? SimpleDateFormat simpleFormate = new SimpleDateFormat("yyyy-MM-dd");
? ? ? ? return simpleFormate.format(calendar.getTime());
? ? }
? ? /**
? ? ?* 得到本月的最后一天
? ? ?*/
? ? public static String getMonthLastDay() {
? ? ? ? Calendar calendar = Calendar.getInstance();
? ? ? ? calendar.set(Calendar.DAY_OF_MONTH, calendar
? ? ? ? ? ? ? ? .getActualMaximum(Calendar.DAY_OF_MONTH));
//? ? ? ? calendar.set( Calendar.DATE, 1);
//? ? ? ? calendar.roll(Calendar.DATE, - 1);
? ? ? ? SimpleDateFormat simpleFormate = new SimpleDateFormat("yyyy-MM-dd");
? ? ? ? return simpleFormate.format(calendar.getTime());
? ? }
--------------------------我是分割線--------------------------------------------
日期比對(duì)
? ? ? ? ? ? ? ? String s1 = tvEndTime.getText().toString();
? ? ? ? ? ? ? ? String s2 = tvStartTime.getText().toString();
? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
? ? ? ? ? ? ? ? Calendar calendar = new GregorianCalendar();
? ? ? ? ? ? ? ? Date d1 = null;
? ? ? ? ? ? ? ? Date d2 = null;
? ? ? ? ? ? ? ? try {
? ? ? ? ? ? ? ? ? ? d1 = df.parse(s1);
? ? ? ? ? ? ? ? ? ? d2 = df.parse(s2);
? ? ? ? ? ? ? ? } catch (ParseException e) {
? ? ? ? ? ? ? ? ? ? e.printStackTrace();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? // 當(dāng)結(jié)束如期小于開始日期的時(shí)候 把結(jié)束日期設(shè)置為開始日期
? ? ? ? ? ? ? ? if (d1.getTime() - d2.getTime() < 0) {
? ? ? ? ? ? ? ? ? ? tvEndTime.setText(tvStartTime.getText().toString());
? ? ? ? ? ? ? ? ? ? d2 = d1;
? ? ? ? ? ? ? ? }
--------------------------我是分割線--------------------------------------------
//獲取當(dāng)前時(shí)間? 可以修改里面 展示格式? ??
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
? ? Date curDate = new Date(System.currentTimeMillis());
? ? String str = formatter.format(curDate); //當(dāng)前時(shí)間