摘要:方法描述根據(jù)身份證獲取年齡,性別表示女表示男獲取系統(tǒng)當(dāng)前時(shí)間
/** * 方法描述: 根據(jù)身份證獲取年齡,性別 * 2表示女 * 1表示男 * @param idNum * @return * String[] * @author husheng */ public static String[] getAgeAndSexById(String idNum) { String age = ""; String sex = ""; GregorianCalendar calendar = new GregorianCalendar(TimeZone.getDefault());//獲取系統(tǒng)當(dāng)前時(shí)間 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}; }
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/66805.html
摘要:這只是我嘗試做的一個(gè)簡(jiǎn)單的程序,順便復(fù)習(xí)下語(yǔ)言,希望以后的自己能更加努力,努力跟隨大佬們的腳步。 這只是我嘗試做的一個(gè)簡(jiǎn)單的程序,順便復(fù)習(xí)下C語(yǔ)言,希望以后的自己能更加努力,努力跟隨大佬們的腳步。 C語(yǔ)言學(xué)生信息管理系統(tǒng)包括以下功能: 1.添加學(xué)生信息 2.查詢學(xué)生信息 3.修改學(xué)生信息 4...
摘要:更多關(guān)于的文章請(qǐng)戳這里您的留言意見是對(duì)我最大的支持我的文章列表 在實(shí)例化一個(gè)類的過程中,通常會(huì)遇到多個(gè)參數(shù)的構(gòu)造函數(shù),但如果有些參數(shù)是非必需的呢?每次都要初始化那么多參數(shù)么? public class Person { private int id;//身份證號(hào) private String name;//姓名 private int age;//年齡 ...
閱讀 3358·2021-10-13 09:40
閱讀 2596·2021-10-08 10:17
閱讀 3999·2021-09-28 09:45
閱讀 932·2021-09-28 09:35
閱讀 1816·2019-08-30 10:51
閱讀 2906·2019-08-26 12:11
閱讀 1652·2019-08-26 10:41
閱讀 3100·2019-08-23 17:10