AgeUtil.java 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.rf.psychological.utils;
  2. import cn.hutool.core.util.StrUtil;
  3. import java.text.ParseException;
  4. import java.text.SimpleDateFormat;
  5. import java.util.Calendar;
  6. import java.util.Date;
  7. public class AgeUtil {
  8. public static Date parse(String strDate) throws ParseException {
  9. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
  10. return sdf.parse(strDate);
  11. }
  12. //由出生日期获得年龄
  13. public static double getAge(String Birthday) throws Exception {
  14. Date birthDay = parse(Birthday);
  15. Calendar cal = Calendar.getInstance();
  16. if (cal.before(birthDay)) { //出生日期晚于当前时间,无法计算
  17. throw new IllegalArgumentException(
  18. "The birthDay is before Now.It's unbelievable!");
  19. }
  20. int yearNow = cal.get(Calendar.YEAR); //当前年份
  21. int monthNow = cal.get(Calendar.MONTH); //当前月份
  22. int dayOfMonthNow = cal.get(Calendar.DAY_OF_MONTH); //当前日期
  23. cal.setTime(birthDay);
  24. int yearBirth = cal.get(Calendar.YEAR);
  25. int monthBirth = cal.get(Calendar.MONTH);
  26. int dayOfMonthBirth = cal.get(Calendar.DAY_OF_MONTH);
  27. double age = yearNow - yearBirth; //计算整岁数
  28. if (monthNow < monthBirth) {
  29. age -= 0.5;
  30. }else if (monthNow > monthBirth){
  31. age += 0.5;
  32. }
  33. /*if (monthNow <= monthBirth) {
  34. if (monthNow == monthBirth) {
  35. if (dayOfMonthNow < dayOfMonthBirth) age--;//当前日期在生日之前,年龄减一
  36. }else{
  37. age -= 0.5;//当前月份在生日之前,年龄减一
  38. }
  39. }*/
  40. return age;
  41. }
  42. public static void main(String args[]) {
  43. try {
  44. double age = getAge("2001-07-21");
  45. System.out.println("age=="+age);
  46. String text = " Hello World ";
  47. System.out.println(text);
  48. System.out.println(text.replaceAll("\\s", ""));
  49. System.out.println(StrUtil.cleanBlank(text));
  50. } catch (ParseException e) {
  51. e.printStackTrace();
  52. } catch (Exception e) {
  53. e.printStackTrace();
  54. }
  55. }
  56. }