国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Java根據身份證獲取年齡,性別

_ivan / 1323人閱讀

摘要:方法描述根據身份證獲取年齡,性別表示女表示男獲取系統當前時間

    /**
     * 方法描述: 根據身份證獲取年齡,性別
     * 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...

    wangshijun 評論0 收藏0
  • 構造器還是構建器?

    摘要:更多關于的文章請戳這里您的留言意見是對我最大的支持我的文章列表 在實例化一個類的過程中,通常會遇到多個參數的構造函數,但如果有些參數是非必需的呢?每次都要初始化那么多參數么? public class Person { private int id;//身份證號 private String name;//姓名 private int age;//年齡 ...

    muzhuyu 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<