摘要:
public static int IdNOToAge(String IdNO){ int leh = IdNO.length(); String dates=""; if (leh == 18) { int se = Integer.valueOf(IdNO.substring(leh - 1)) % 2; ... 阅读全文
摘要:
public static String letterToH(String letter) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < letter.length(); i++) { char c = letter.charAt(i); ... 阅读全文