Android开发中时间的具体使用

本文详细介绍了在Android开发中如何使用时间戳和时间相关的方法,包括根据时间戳计算年龄、描述性时间以及分秒,获取年月日时分秒,日期字符串与Calendar的相互转换,以及获取当前时间的增减操作。内容实用,适合Android开发者参考。
摘要由CSDN通过智能技术生成

前言

本篇文章主要讲解的有关Android开发中常用的时间的处理方式以及应用。其它相关的内容,可以参考链接: https://blog.csdn.net/qq_36451275/article/details/135934330?spm=1001.2014.3001.5501上篇文章。`


下面主要讲解具体的使用方法

一、时间戳

1.根据出生的时间戳获取当前年龄

 public static int getAge(long birthday) {
   
        Calendar currentCalendar = Calendar.getInstance();//实例化calendar
        currentCalendar.setTimeInMillis(System.currentTimeMillis());//调用setTimeInMillis方法和System.currentTimeMillis()获取当前时间

        Calendar targetCalendar = Calendar.getInstance();
        targetCalendar.setTimeInMillis(birthday);//这个解析传进来的时间戳

        if (currentCalendar.get(Calendar.MONTH) >= targetCalendar.get(Calendar.MONTH)) {
   //如果现在的月份大于生日的月份
            return currentCalendar.get(Calendar.YEAR) - targetCalendar.get(Calendar.YEAR);//那就直接减,因为现在的年月都大于生日的年月
        } else {
   
            return currentCalendar.get(Calendar.YEAR) - targetCalendar.get(Calendar.YEAR) - 1;//否则,减掉一年
        }
    }

2.根据时间戳获取描述性时间,如3分钟前,1天前

   public static String getDescriptionTimeFromTimestamp(String timeStr, String format) {
   
        if (format == null || format.trim().equals("")) {
   
            sdf.applyPattern(FORMAT_DATE_TIME_FULL);
        } else {
   
            sdf.applyPattern(format);
        }
        try {
   
            Date date = sdf.parse(timeStr);
            return getDescriptionTimeFromTimestamp(Objects.requireNonNull(date).getTime());
        } catch (Exception e) {
   
            e.printStackTrace();
            return timeStr;
        }
    }


public static String getDescriptionTimeFromTimestamp(long timestamp) {
   
        long currentTime = System.currentTimeMillis();
        long timeGap = (currentTime - timestamp)</
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值