摘要:方法描述根據身份證獲取年齡,性別表示女表示男獲取系統當前時間
/** * 方法描述: 根據身份證獲取年齡,性別 * 2表示女 * 1表示男 * @param idNum * @return * String[] * @author husheng */ public static String[] getAgeAndSexById(String idNum) { String age = ""; String sex = ""; GregorianCalendar calendar = new GregorianCalendar(TimeZone.getDefault());//獲取系統當前時間 int currentYear = calendar.get(Calendar.YEAR); if (idNum.matches("^d{15}$|^d{17}[dxX]$")) { if (idNum.length() == 18) { Pattern pattern = Pattern.compile("d{6}(d{4})d{6}(d{1})[dxX]{1}"); Matcher matcher = pattern.matcher(idNum); if (matcher.matches()) { age = String.valueOf(currentYear - Integer.parseInt(matcher.group(1))); sex = "" + Integer.parseInt(matcher.group(2))%2; } } else if (idNum.length() == 15) { Pattern p = Pattern.compile("d{6}(d{2})d{5}(d{1})d{1}"); Matcher m = p.matcher(idNum); if (m.matches()) { int year = Integer.parseInt(m.group(1)); year = 2000 + year; if (year > 2020) { year = year - 100; } age = String.valueOf(currentYear - year); sex = "" + Integer.parseInt(m.group(2))%2; } } } if ("0".equals(sex)) { sex = "2"; } return new String[]{age, sex}; }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/66805.html
摘要:這只是我嘗試做的一個簡單的程序,順便復習下語言,希望以后的自己能更加努力,努力跟隨大佬們的腳步。 這只是我嘗試做的一個簡單的程序,順便復習下C語言,希望以后的自己能更加努力,努力跟隨大佬們的腳步。 C語言學生信息管理系統包括以下功能: 1.添加學生信息 2.查詢學生信息 3.修改學生信息 4...
閱讀 3355·2021-10-13 09:40
閱讀 2592·2021-10-08 10:17
閱讀 3995·2021-09-28 09:45
閱讀 929·2021-09-28 09:35
閱讀 1813·2019-08-30 10:51
閱讀 2903·2019-08-26 12:11
閱讀 1649·2019-08-26 10:41
閱讀 3096·2019-08-23 17:10