在Service中获取年龄的代码

Posted wudashuai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Service中获取年龄的代码相关的知识,希望对你有一定的参考价值。

 

//java.sql.Date,java.util.Date-->>存储日期数据

//SimpleDateFormat-->>字符串变日期,日期变 字符串

//SimpleDateFormat-->>字符串变日期,日期变 字符串

Calendar calendar=Calendar.getInstance();//存储当前日期

int year_now=calendar.get(Calendar.YEAR);

int month_now=calendar.get(Calendar.MONTH)+1;

int day_now=calendar.get(Calendar.DAY_OF_MONTH);

System.out.println(year_now);

System.out.println(month_now);

System.out.println(day_now);

for(Student stu:stulist){

calendar.setTime(stu.getBirthday());

int year_pass=calendar.get(Calendar.YEAR);

int month_pass=calendar.get(Calendar.MONTH)+1;

int day_pass=calendar.get(Calendar.DAY_OF_MONTH);

int age=year_now-year_pass;

if(month_now<month_pass){

age--;

 }else if((month_now==month_pass)&&(day_now<day_pass))

 {

 age--;

}

stu.setAge(age);

}

以上是关于在Service中获取年龄的代码的主要内容,如果未能解决你的问题,请参考以下文章

单元测试怎么注入service

如何在service中注入service

Android学习记录04——绑定形式

spring在service层获取session和request

如何在 Android 的 Receiver/Service 中获取 CheckBoxPreference 值?

egg 项目里从 Service 内获取模拟数据