今天就跟大家聊聊有關(guān)Android應(yīng)用中怎么對(duì)時(shí)間進(jìn)行獲取,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比會(huì)寧網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式會(huì)寧網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋會(huì)寧地區(qū)。費(fèi)用合理售后完善,十多年實(shí)體公司更值得信賴。
Android 獲取時(shí)間實(shí)例代碼
注意:
h:12小時(shí)制小時(shí)數(shù)
H:24小時(shí)制小時(shí)數(shù)
實(shí)例代碼:
import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; /** * Created by Administrator on 2017/5/8. */ public class GetTime { public static void main(String[] args) { Date date = new Date(); System.out.println(date);//Mon May 08 14:27:44 CST 2017 System.out.println(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(date));//2017-05-08 02:27:44 long millis = System.currentTimeMillis(); System.out.println(millis);//1494224864479 System.out.println(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(millis));//2017-05-08 02:27:44 //yyyy-MM-dd E hh:mm:ss.sss //年-月-日 星期 時(shí):分:秒.毫秒 System.out.println(new SimpleDateFormat("yyyy-MM-dd E hh:mm:ss.sss").format(date));//2017-05-08 星期一 02:27:44.044 System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.sss").format(date));//2017-05-08 14:27:44.044 System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date));//2017-05-08 14:27:44 System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm").format(date));//2017-05-08 14:27 System.out.println(new SimpleDateFormat().format(date));//17-5-8 下午2:27 :默認(rèn) compareDataToNow("2017-05-03 12:45:00"); try { Date date1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2017-05-03 12:45:00"); compareToNowDate(date1); } catch (ParseException e) { e.printStackTrace(); } getWeek(); getTime1(); getTime2(); } static void getTime1() { long time = System.currentTimeMillis(); //long now = android.os.SystemClock.uptimeMillis(); SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date d1 = new Date(time); String t1 = format.format(d1); System.out.println("SimpleDateFormat時(shí)間===" + t1);//2017-05-08 12:44:10 SimpleDateFormat f4 = new SimpleDateFormat("今天是" + "yyyy年MM月dd日 E kk點(diǎn)mm分"); System.out.println("f4======" + f4.format(new Date()));//今天是2017年05月08日 星期一 14點(diǎn)15分 SimpleDateFormat f3 = new SimpleDateFormat("今天是" + "hh小時(shí)mm分鐘"); System.out.println("f3======" + f3.format(new Date()));//今天是02小時(shí)15分鐘 SimpleDateFormat f2 = new SimpleDateFormat("今天是" + "kk點(diǎn)mm分鐘"); System.out.println("f2======" + f2.format(new Date()));//今天是14點(diǎn)17分鐘 } static void getTime2() { Calendar calendar = Calendar.getInstance(); String created = calendar.get(Calendar.YEAR) + "年" + (calendar.get(Calendar.MONTH) + 1) + "月"http://從0計(jì)算 + calendar.get(Calendar.DAY_OF_MONTH) + "日" + calendar.get(Calendar.HOUR_OF_DAY) + "時(shí)" + calendar.get(Calendar.MINUTE) + "分" + calendar.get(Calendar.SECOND) + "s"; System.out.println("Calendar時(shí)間====" + created);//時(shí)間:2017年5月8日12時(shí)33分24s } static void getWeek() { Calendar calendar = Calendar.getInstance(); int day = calendar.get(Calendar.DAY_OF_WEEK); String today = null; if (day == 2) { today = "Monday"; } else if (day == 3) { today = "Tuesday"; } else if (day == 4) { today = "Wednesday"; } else if (day == 5) { today = "Thursday"; } else if (day == 6) { today = "Friday"; } else if (day == 7) { today = "Saturday"; } else if (day == 1) { today = "Sunday"; } System.out.println("Today is:- " + today);//Today is:- Monday } //計(jì)算日期之間相隔幾天: static long compareDataToNow(String date) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date passDate, nowDate; long diff = -100l, days = -100l; try { passDate = sdf.parse(date); String nowStr = sdf.format(new Date()); nowDate = sdf.parse(nowStr); diff = passDate.getTime() - nowDate.getTime();//long型的毫秒數(shù) days = diff / (1000 * 60 * 60 * 24); System.out.println("相隔:" + days + "天" + " nowDate.getTime()=====" + nowDate.getTime());//-5天 } catch (ParseException e) { e.printStackTrace(); } return diff; } //計(jì)算日期之間相隔幾天: static long compareToNowDate(Date date) { long diff = -100l, days = -100l; Date nowDate = new Date(); diff = date.getTime() - nowDate.getTime();//long型的毫秒數(shù) days = diff / (1000 * 60 * 60 * 24); System.out.println("相隔:" + days + "天" + " nowDate.getTime()=====" + nowDate.getTime());//-5天 return diff; } }
看完上述內(nèi)容,你們對(duì)Android應(yīng)用中怎么對(duì)時(shí)間進(jìn)行獲取有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。